chartist: Build a chartist chart

Description Usage Arguments Examples

View source: R/chartist.R

Description

Start building a chart.

Usage

1
chartist(data, x, y)

Arguments

data

A data frame, defaults to NULL.

x

The column

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
lines <- iris %>%
  chartist(Sepal.Length, Sepal.Width) %>%
  layer_line() %>%
  layer_ratio_5_8()

lines

points <- iris %>%
  chartist(Sepal.Length, Sepal.Width) %>%
  layer_point() %>%
  layer_ratio_5_8()

points

nteetor/chartisan documentation built on May 29, 2019, 7:19 a.m.