edaPlots {HVT} | R Documentation |
plots for data analysis
Description
This is the main function that provides exploratory data analysis plots
Usage
edaPlots(df, time_series = FALSE, time_column)
Arguments
df |
Dataframe. A data frame object. |
time_series |
Logical. A value to indicate whether the dataset is time_series or not. |
time_column |
Character. The name of the time column in the data frame. |
Value
Five objects which include time series plots, data distribution plots, box plots, correlation plot and a descriptive statistics table.
Author(s)
Vishwavani <vishwavani@mu-sigma.com>
Examples
dataset <- data.frame(date = as.numeric(time(EuStockMarkets)),
DAX = EuStockMarkets[, "DAX"],
SMI = EuStockMarkets[, "SMI"],
CAC = EuStockMarkets[, "CAC"],
FTSE = EuStockMarkets[, "FTSE"])
edaPlots(dataset, time_series = TRUE, time_column = 'date')
[Package HVT version 24.5.2 Index]