RでSVGを出力

RでSVG形式の図を作ります。


# CRANから除かれていたので、ソースをダウンロード
$ curl -O https://cran.r-project.org/src/contrib/Archive/RSVGTipsDevice/RSVGTipsDevice_1.0-7.tar.gz


# Rを起動して、ソースからインストール
> install.packages("RSVGTipsDevice_1.0-7.tar.gz", repos = NULL, type = "source")

# SVGをつくる
> library(RSVGTipsDevice)
> devSVGTips()
> plot(1)
> dev.off()