ichart_ly I Chart or X-Chart Plot using R Plotly

ichart_ly(data, x = NULL, y = NULL, xname = NULL, yname = NULL)

Arguments

data

is a Data Frame

x

is a column of data frame on x-axis

y

is a column of data frame on y-axis

xname

is a string and Name of x-axis

yname

is a string and Name of y-axis

Value

plot

Examples

ichart_ly(mtcars, x = mtcars$mpg, y = mtcars$hp, xname = "mpg", yname = "hp")