plot_interactive {istat} | R Documentation |
Plot dataset interactively
Description
Build different types of exploratory graphs (scatter plot, bar plot, pie chart). You can interactively choose the plot that you want create. Once you have chosen the plot, you can interactively choose the variables from the data set for which you want to build the plot.
Usage
plot_interactive(df)
Arguments
df |
data set as data.frame |
Value
It returns the chosen plot.
Note
plot_interactive allows you to have an idea about the general trend of your data, and it's intended to be used with exploratory purpose.
Examples
if(interactive()) {
plot_interactive(iris)
}
[Package istat version 1.0 Index]