Nothing
#' Get Number of Rows in Time Series Lists
#'
#' @param tsl (required, list) Time series list. Default: NULL
#'
#' @return list
#' @export
#' @examples
#' #simulate zoo time series
#' tsl <- tsl_simulate(
#' rows = 150
#' )
#'
#' #count rows
#' tsl_nrow(
#' tsl = tsl
#' )
#' @autoglobal
#' @family tsl_management
tsl_nrow <- function(
tsl = NULL
){
utils_check_args_tsl(
tsl = tsl,
min_length = 1
)
lapply(
X = tsl,
FUN = function(x){
nrow(x)
}
)
}
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.