Load exploratory data analysis results from a Finn Agent run and return as a single data frame
get_eda_data(agent_info)
Agent info from set_agent_info()
A data frame containing all EDA results with columns:
Combo: Time series identifier
Analysis_Type: Type of EDA analysis (e.g., "ACF", "PACF", "Stationarity", etc.)
Metric: Specific metric or measure within each analysis type
Value: Numeric or character value of the metric
if (FALSE) { # \dontrun{
# Get EDA results for all time series
eda_df <- get_eda_data(agent_info)
# Filter for specific analysis types
acf_results <- eda_df %>%
dplyr::filter(Analysis_Type == "ACF")
# Filter for specific time series
ts_results <- eda_df %>%
dplyr::filter(Combo == "Product_A--Region_1")
} # }