├── .Rbuildignore ├── .gitignore ├── CONDUCT.md ├── DESCRIPTION ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── add-layer.R ├── aes.R ├── as-bbplot.R ├── bb-lm.R ├── bb-point.R ├── bb-text.R ├── bb-tile.R ├── bbplot.R ├── grid.R ├── labs.R ├── print.R ├── scale.R ├── theme.R ├── utilities.R └── zzz.R ├── README.Rmd ├── README.md ├── man ├── as-bbplot.Rd ├── bb-grid.Rd ├── bb-scale.Rd ├── bb-theme.Rd ├── bb_aes.Rd ├── bblabs.Rd ├── bbplot.Rd ├── bbplot_add.Rd ├── layer.Rd ├── reexports.Rd ├── set_bb_theme.Rd └── unset_bb_theme.Rd └── vignettes └── plotbb.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/add-layer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/add-layer.R -------------------------------------------------------------------------------- /R/aes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/aes.R -------------------------------------------------------------------------------- /R/as-bbplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/as-bbplot.R -------------------------------------------------------------------------------- /R/bb-lm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/bb-lm.R -------------------------------------------------------------------------------- /R/bb-point.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/bb-point.R -------------------------------------------------------------------------------- /R/bb-text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/bb-text.R -------------------------------------------------------------------------------- /R/bb-tile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/bb-tile.R -------------------------------------------------------------------------------- /R/bbplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/bbplot.R -------------------------------------------------------------------------------- /R/grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/grid.R -------------------------------------------------------------------------------- /R/labs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/labs.R -------------------------------------------------------------------------------- /R/print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/print.R -------------------------------------------------------------------------------- /R/scale.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/scale.R -------------------------------------------------------------------------------- /R/theme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/theme.R -------------------------------------------------------------------------------- /R/utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/utilities.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/README.md -------------------------------------------------------------------------------- /man/as-bbplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/man/as-bbplot.Rd -------------------------------------------------------------------------------- /man/bb-grid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/man/bb-grid.Rd -------------------------------------------------------------------------------- /man/bb-scale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/man/bb-scale.Rd -------------------------------------------------------------------------------- /man/bb-theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/man/bb-theme.Rd -------------------------------------------------------------------------------- /man/bb_aes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/man/bb_aes.Rd -------------------------------------------------------------------------------- /man/bblabs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/man/bblabs.Rd -------------------------------------------------------------------------------- /man/bbplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/man/bbplot.Rd -------------------------------------------------------------------------------- /man/bbplot_add.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/man/bbplot_add.Rd -------------------------------------------------------------------------------- /man/layer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/man/layer.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/set_bb_theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/man/set_bb_theme.Rd -------------------------------------------------------------------------------- /man/unset_bb_theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/man/unset_bb_theme.Rd -------------------------------------------------------------------------------- /vignettes/plotbb.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/plotbb/HEAD/vignettes/plotbb.Rmd --------------------------------------------------------------------------------