Learn R Programming

plotbb (version 0.1.1)

bbplot: bbplot

Description

bbplot

Usage

bbplot(data, mapping = bb_aes())

Value

bbplot object

Arguments

data

data

mapping

variable mapping

Author

Guangchuang Yu

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