ezplot: Interactive tool that creates well-formated charts and graphs...

Description Usage Arguments Value Examples

Description

Interactive tool that creates well-formated charts and graphs with one simple function.

Usage

1
ezplot(data, x = NA, y = NA, type = NA)

Arguments

data

A table of data

x

The column/row name of the data input that will be plotted on the x-axis

y

The column/row name of the data input that will be plotted on the y-axis

type

The type of graph/chart that the user wants returned

Value

a graph of the data input in the specified type and appropriate summary statistics

Examples

1
2
3
4
5
6
7
8
9
ezplot(iris)
ezplot(iris, "Sepal.Length", "Sepal.Width", "scattergram")
ezplot(iris, "Sepal.Length", "Sepal.Width", "line")
ezplot(mpg, "hwy", "None", "bar")
ezplot(iris, "Sepal.Length", "Sepal.Width", "smooth")
ezplot(mpg, "class", "hwy", "boxplot")
ezplot(mpg, "hwy", "None", "frequency")
ezplot(mpg, "hwy", "None", "histogram")
ezplot(economics, "date", "unemploy", "area")

jaeyoon0508/EZplot documentation built on May 18, 2019, 9:07 a.m.