├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── css.R └── zzz.R ├── README-example-1.png ├── README.Rmd ├── README.md ├── css.Rproj ├── man ├── read_css.Rd └── write_css.Rd └── src ├── css.cpp └── init.c /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/css/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/css/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/css/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/css/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2017 2 | COPYRIGHT HOLDER: ThinkR 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/css/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/css.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/css/HEAD/R/css.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- 1 | #' @useDynLib css, .registration = TRUE 2 | NULL 3 | -------------------------------------------------------------------------------- /README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/css/HEAD/README-example-1.png -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/css/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/css/HEAD/README.md -------------------------------------------------------------------------------- /css.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/css/HEAD/css.Rproj -------------------------------------------------------------------------------- /man/read_css.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/css/HEAD/man/read_css.Rd -------------------------------------------------------------------------------- /man/write_css.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/css/HEAD/man/write_css.Rd -------------------------------------------------------------------------------- /src/css.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/css/HEAD/src/css.cpp -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/css/HEAD/src/init.c --------------------------------------------------------------------------------