notes on R

This commit is contained in:
pt 2020-04-21 12:31:40 -04:00
parent 424094baa6
commit 0c3234c920
1 changed files with 10 additions and 0 deletions

10
jupyter/r.md Normal file
View File

@ -0,0 +1,10 @@
using grid.arrange
https://cran.r-project.org/web/packages/gridExtra/vignettes/arrangeGrob.html
set and mirror axis limits:
```
scale_y_continuous(
breaks=seq(glob$PriceMin, glob$PriceMax, round(glob$StdDev * .5,2)),
limits = c(glob$PriceMin, glob$PriceMax)
) +
```