bbplot {plotbb} | R Documentation |
bbplot
bbplot(data, mapping = bb_aes())
data |
data |
mapping |
variable mapping |
a proof of concept for grammar of graphics based on base plot. The bbplot class contains data (input data), mapping (aesthetic mapping), layer (a list of plot layers), theme (theme setting) and labs (label setting, including title, subtitle, x and y labels).
bbplot object
Guangchuang Yu
library(plotbb)
p <- bbplot(mtcars, bb_aes(mpg, disp, col=factor(cyl)))
p + bb_grid(col='grey50', lty='dashed') + bb_point(pch=19)