tau_point: Create a TauCharts scatterplot

Description Usage Arguments References Examples

Description

Create a TauCharts scatterplot

Usage

1
tau_point(tau, x, y, color = NULL, size = NULL)

Arguments

tau

taucharts object

x

quoted name of data column to use for x-axis values

y

quoted name of data column to use for y-axis values

color

quoted name of data column to map color aesthetic to

size

quoted name of data column to make size aesthetic to

References

http://api.taucharts.com/basic/scatterplot.html

Examples

1
2
3
tauchart(mtcars) %>% tau_point("mpg", "wt")
mtcars$cyl <- factor(mtcars$cyl)
tauchart(mtcars) %>% tau_point("mpg", "wt", "cyl", "hp")

hrbrmstr/taucharts documentation built on May 17, 2019, 5:14 p.m.