To run the container do:
docker-compose run --rm r
Once you have the container running, enter the command below in the R console to show some graphics
demo(graphics)
To run the container do:
docker-compose run --rm r
Once you have the container running, enter the command below in the R console to show some graphics
demo(graphics)
| #[macro_use] | |
| extern crate lazy_static; | |
| extern crate pest; | |
| #[macro_use] | |
| extern crate pest_derive; | |
| use pest::iterators::{Pair, Pairs}; | |
| use pest::prec_climber::{Assoc, Operator, PrecClimber}; | |
| use pest::{error, Parser}; |