Learn R Programming

plotbb (version 0.0.6)

bbplot: bbplot

Description

bbplot

Usage

bbplot(data, mapping = bb_aes())

Arguments

data

data

mapping

variable mapping

Value

bbplot object

Details

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).

Examples

Run this code
# NOT RUN {
library(plotbb)
p <- bbplot(mtcars, bb_aes(mpg, disp, col=factor(cyl)))
p + bb_grid(col='grey50', lty='dashed') + bb_point(pch=19)
# }

Run the code above in your browser using DataLab