Micah P. Dombrowski / Apr 20 2020
R Height & Linking Examples
wget -q -O /results/s1.RData \
https://nextjournal.com/data/QmWzi4EH4LTXhbA7BVjfxThe3jFrGBrSUp263fxkZueEcf
1.6s
R_rstan (Bash in R)
library(rstan)
load(s1.RData)
1.3s
R_rstan (R)
Default plot sizes don't look too hot:
#print (s1);
p <- plot(s1, pars=c('year_timing','year_spread','river_timing','river_spread'))
p
1.0s
R_rstan (R)
Save current plot as .svg file, with different width, height.
ggsave("/results/blah.svg", width=8, height=10)
0.5s
R_rstan (R)
Link to result file here.