View source: R/distantia_model_frame.R
distantia_model_frame | R Documentation |
This function generates a model frame for statistical or machine learning analysis from these objects:
: Dissimilarity data frame generated by distantia()
, distantia_ls()
, distantia_dtw()
, or distantia_time_delay()
. The output model frame will have as many rows as this data frame.
: Data frame with static descriptors of the time series. These descriptors are converted to distances between pairs of time series via distance_matrix()
.
: List defining composite predictors. This feature allows grouping together predictors that have a common meaning. For example, composite_predictors = list(temperature = c("temperature_mean", "temperature_min", "temperature_max")
generates a new predictor named "temperature", which results from computing the multivariate distances between the vectors of temperature variables of each pair of time series. Predictors in one of such groups will be scaled before distance computation if their maximum standard deviations differ by a factor of 10 or more.
The resulting data frame contains the following columns:
x
and y
: names of the pair of time series represented in the row.
response columns in response_df
.
predictors columns: representing the distance between the values of the given static predictor between x
and y
.
(optional) geographic_distance
: If predictors_df
is an sf sf
data frame, then geographic distances are computed via sf::st_distance()
.
This function supports a parallelization setup via future::plan()
.
distantia_model_frame(
response_df = NULL,
predictors_df = NULL,
composite_predictors = NULL,
scale = TRUE,
distance = "euclidean"
)
response_df |
(required, data frame) output of |
predictors_df |
(required, data frame or sf data frame) data frame with numeric predictors for the the model frame. Must have a column with the time series names in |
composite_predictors |
(optional, list) list defining composite predictors. For example, |
scale |
(optional, logical) if TRUE, all predictors are scaled and centered with |
distance |
(optional, string) Method to compute the distance between predictor values for all pairs of time series in |
data frame: with attributes "predictors", "response", and "formula".
Other distantia_support:
distantia_aggregate()
,
distantia_boxplot()
,
distantia_cluster_hclust()
,
distantia_cluster_kmeans()
,
distantia_matrix()
,
distantia_spatial()
,
distantia_stats()
,
distantia_time_delay()
,
utils_block_size()
,
utils_cluster_hclust_optimizer()
,
utils_cluster_kmeans_optimizer()
,
utils_cluster_silhouette()
#covid prevalence in California counties
tsl <- tsl_initialize(
x = covid_prevalence,
name_column = "name",
time_column = "time"
) |>
#subset to shorten example runtime
tsl_subset(
names = 1:5
)
#dissimilarity analysis
df <- distantia_ls(tsl = tsl)
#combine several predictors
#into a new one
composite_predictors <- list(
economy = c(
"poverty_percentage",
"median_income",
"domestic_product"
)
)
#generate model frame
model_frame <- distantia_model_frame(
response_df = df,
predictors_df = covid_counties,
composite_predictors = composite_predictors,
scale = TRUE
)
head(model_frame)
#names of response and predictors
#and an additive formula
#are stored as attributes
attributes(model_frame)$predictors
#if response_df is output of distantia():
attributes(model_frame)$response
attributes(model_frame)$formula
#example of linear model
# model <- lm(
# formula = attributes(model_frame)$formula,
# data = model_frame
# )
#
# summary(model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.