Nothing
#' Get Time Series Names from a Time Series Lists
#'
#' @description
#'
#' A time series list has two sets of names: the names of the list items (as returned by `names(tsl)`), and the names of the contained zoo objects, as stored in their attribute "name". These names should ideally be the same, for the sake of data consistency. This function extracts either set of names,
#'
#'
#' @param tsl (required, list) Time series list. Default: NULL
#' @param zoo (optional, logical) If TRUE, the attributes "name" of the zoo objects are returned. Default: TRUE
#'
#' @return list
#' @export
#' @autoglobal
#' @examples
#' #initialize a time series list
#' tsl <- tsl_initialize(
#' x = fagus_dynamics,
#' name_column = "name",
#' time_column = "time"
#' )
#'
#'
#' #get names of zoo objects
#' tsl_names_get(
#' tsl = tsl,
#' zoo = TRUE
#' )
#'
#' #get list names only
#' tsl_names_get(
#' tsl = tsl,
#' zoo = FALSE
#' )
#'
#' #same as
#' names(tsl)
#' @family tsl_management
tsl_names_get <- function(
tsl = NULL,
zoo = TRUE
){
utils_check_args_tsl(
tsl = tsl,
min_length = 1
)
out <- names(tsl)
if(zoo == TRUE){
out <- sapply(
X = tsl,
FUN = function(x){
y <- attributes(x)$name
if(is.null(y)){
return("")
}
y
}
)
if(is.list(out)){
out <- unlist(out)
}
}
out
}
#' Set Time Series Names in a Time Series List
#'
#' @description
#' Sets the names of a time series list and the internal names of the zoo objects inside, stored in their attribute "name".
#'
#'
#' @param tsl (required, list) Time series list. Default: NULL
#' @param names (optional, character vector) names to set. Must be of the same length of `x`. If NULL, and the list `x` has names, then the names of the zoo objects inside of the list are taken from the names of the list elements.
#'
#' @return time series list
#' @export
#'
#' @examples
#' #simulate time series list
#' tsl <- tsl_simulate(n = 3)
#'
#' #assess validity
#' tsl_diagnose(
#' tsl = tsl
#' )
#'
#' #list and zoo names (default)
#' tsl_names_get(
#' tsl = tsl
#' )
#'
#' #list names
#' tsl_names_get(
#' tsl = tsl,
#' zoo = FALSE
#' )
#'
#' #renaming list items and zoo objects
#' #------------------------------------
#' tsl <- tsl_names_set(
#' tsl = tsl,
#' names = c("X", "Y", "Z")
#' )
#'
#' # check new names
#' tsl_names_get(
#' tsl = tsl
#' )
#'
#' #fixing naming issues
#' #------------------------------------
#'
#' #creating a invalid time series list
#' names(tsl)[2] <- "B"
#'
#' # check names
#' tsl_names_get(
#' tsl = tsl
#' )
#'
#' #validate tsl
#' #returns NOT VALID
#' #recommends a solution
#' tsl_diagnose(
#' tsl = tsl
#' )
#'
#' #fix issue with tsl_names_set()
#' #uses names of zoo objects for the list items
#' tsl <- tsl_names_set(
#' tsl = tsl
#' )
#'
#' #validate again
#' tsl_diagnose(
#' tsl = tsl
#' )
#'
#' #list names
#' tsl_names_get(
#' tsl = tsl
#' )
#' @family tsl_management
tsl_names_set <- function(
tsl = NULL,
names = NULL
){
utils_check_args_tsl(
tsl = tsl,
min_length = 1
)
#function to deduplicate names
deduplicate <- function(x = NULL){
if(
!is.null(x) &&
sum(duplicated(x)) > 0
){
x <- utils_clean_names(
x = x
)
}
x
}
#user provided names if available
if(!is.null(names)){
names <- deduplicate(
x = as.character(names)
)
} else {
#generate names from input or LETTERS
#get names from tsl list
names <- tsl_names_get(
tsl = tsl,
zoo = FALSE
) |>
deduplicate()
#get names from zoo objects
if(is.null(names)){
#use zoo names as fallback
names <- tsl_names_get(
tsl = tsl,
zoo = TRUE
) |>
deduplicate()
}
#get names from LETTERS
if(is.null(names)){
n <- length(tsl)
#more names than LETTERS
if(n > length(LETTERS)){
names <- c(
LETTERS,
as.vector(
outer(
X = LETTERS,
Y = LETTERS,
FUN = paste0
)
)
)[seq_len(n)]
#fewer names than LETTERS
} else {
names <- LETTERS[seq_len(n)]
}
}
}
#setting names
#name list elements
names(tsl) <- names
#name zoo objects
tsl <- Map(
f = function(y, name) {
zoo_name_set(
x = y,
name = name
)
},
tsl,
names
)
tsl
}
#' Clean Time Series Names in a Time Series List
#'
#'@description
#' Combines [utils_clean_names()] and [tsl_names_set()] to help clean, abbreviate, capitalize, and add a suffix or a prefix to time series list names.
#'
#' @param tsl (required, list) Time series list. Default: NULL
#' @param lowercase (optional, logical) If TRUE, all names are coerced to lowercase. Default: FALSE
#' @param separator (optional, character string) Separator when replacing spaces and dots. Also used to separate `suffix` and `prefix` from the main word. Default: "_".
#' @param capitalize_first (optional, logical) Indicates whether to capitalize the first letter of each name Default: FALSE.
#' @param capitalize_all (optional, logical) Indicates whether to capitalize all letters of each name Default: FALSE.
#' @param length (optional, integer) Minimum length of abbreviated names. Names are abbreviated via [abbreviate()]. Default: NULL.
#' @param suffix (optional, character string) Suffix for the clean names. Default: NULL.
#' @param prefix (optional, character string) Prefix for the clean names. Default: NULL.
#'
#' @return time series list
#'
#' @autoglobal
#' @export
#' @examples
#' #initialize time series list
#' tsl <- tsl_initialize(
#' x = fagus_dynamics,
#' name_column = "name",
#' time_column = "time"
#' )
#'
#' #original names
#' tsl_names_get(
#' tsl = tsl
#' )
#'
#' #abbreviate names
#' #---------------------------
#' tsl_clean <- tsl_names_clean(
#' tsl = tsl,
#' capitalize_first = TRUE,
#' length = 4 #abbreviate to 4 characters
#' )
#'
#' #new names
#' tsl_names_get(
#' tsl = tsl_clean
#' )
#'
#' #suffix and prefix
#' #---------------------------
#' tsl_clean <- tsl_names_clean(
#' tsl = tsl,
#' capitalize_all = TRUE,
#' separator = "_",
#' suffix = "fagus",
#' prefix = "country"
#' )
#'
#' #new names
#' tsl_names_get(
#' tsl = tsl_clean
#' )
#' @family tsl_management
tsl_names_clean <- function(
tsl = NULL,
lowercase = FALSE,
separator = "_",
capitalize_first = FALSE,
capitalize_all = FALSE,
length = NULL,
suffix = NULL,
prefix = NULL
){
zoo_names <- tsl_names_get(
tsl = tsl,
zoo = TRUE
)
tsl_names <- utils_clean_names(
x = zoo_names,
lowercase = lowercase,
separator = separator,
capitalize_first = capitalize_first,
capitalize_all = capitalize_all,
length = length,
suffix = suffix,
prefix = prefix
)
names(tsl_names) <- NULL
tsl <- tsl_names_set(
tsl = tsl,
names = tsl_names
)
tsl
}
#' Tests Naming Issues in Time Series Lists
#'
#' @param tsl (required, list) Time series list. Default: NULL
#'
#' @return logical
#' @export
#' @autoglobal
#' @examples
#' #creating three zoo time series
#'
#' #one with NA values
#' x <- zoo_simulate(
#' name = "x",
#' cols = 1,
#' na_fraction = 0.1
#' )
#'
#' #with different number of columns
#' #wit repeated name
#' y <- zoo_simulate(
#' name = "x",
#' cols = 2
#' )
#'
#' #with different time class
#' z <- zoo_simulate(
#' name = "z",
#' cols = 1,
#' time_range = c(1, 100)
#' )
#'
#' #adding a few structural issues
#'
#' #changing the column name of x
#' colnames(x) <- c("b")
#'
#' #converting z to vector
#' z <- zoo::zoo(
#' x = runif(nrow(z)),
#' order.by = zoo::index(z)
#' )
#'
#' #storing zoo objects in a list
#' #with mismatched names
#' tsl <- list(
#' a = x,
#' b = y,
#' c = z
#' )
#'
#' #running full diagnose
#' tsl_names_test(
#' tsl = tsl
#' )
#' @family tsl_management
tsl_names_test <- function(
tsl = NULL
){
utils_check_args_tsl(
tsl = tsl,
min_length = 1
)
#get object names
names_tsl <- names(tsl)
names_zoo <- sapply(
X = tsl,
FUN = function(x){
y <- attributes(x)$name
if(is.null(y)){
return("")
}
y
}
)
#problematic conditions
names_issues <- c(
is.null(names_tsl),
duplicated(names_tsl),
duplicated(names_zoo),
names_zoo == "",
names_zoo != names_tsl
)
#test outcome
#TRUE if no issues
#FALSE if issues
!any(names_issues)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.