Skip to content

Instantly share code, notes, and snippets.

View irichgreen's full-sized avatar

iRichGreen co., Ltd. irichgreen

View GitHub Profile
@irichgreen
irichgreen / index.html
Created January 13, 2017 04:43
Scatterplot
<!doctype HTML>
<meta charset = 'utf-8'>
<html>
<head>
<script src='//ramnathv.github.io/rCharts/libraries/widgets/polycharts/js/polychart2.standalone.js' type='text/javascript'></script>
<style>
.rChart {
display: block;
dualplot <- function(x1, y1, y2, x2 = x1, col1 = "#C54E6D", col2 = "#009380",
lwd = 1, colgrid = NULL,
mar = c(3, 6, 3, 6) + 0.1,
ylab1 = substitute(y1), ylab2 = substitute(y2), nxbreaks = 5,
yleg1 = paste(ylab1, "(LHS)"), yleg2 = paste(ylab2, "(RHS)"),
ylim1 = NULL, ylim2 = NULL, ylim.ref = 1,
xlab = "", main = NULL, legx = "topleft", legy = NULL, ...){
# Base graphics function for drawing dual axis line plot.
# Assumed to be two time series on a conceptually similar, non-identical scale
#
@irichgreen
irichgreen / docker_cheat.md
Created July 24, 2016 07:59 — forked from nacyot/docker_cheat.md
도커(Docker) 치트 시트

Docker 치트 시트

한국어 번역(초벌) : nacyot

왜 Docker를 사용해야하는가?

Why Should I Care (For Developers)

"나에게 Docker의 매력은 간단히 격리된 환경을 만들 수 있다는 것과, 그러한 환경을 재사용할 수 있다는 점이다."런타임 환경을 한 번 만들어 패키지로 만들면, 이 패키지를 다른 어떤 머신에서도 다시 사용할 수 있다. 또한 여기서 실행되는 모든 것은 마치 가상머신과 같이 호스트로부터 격리되어있다. 무엇보다도 이런 모든 일들이 빠르고 간단히 가능하다.