Typed dataframe
ts_dataframe.RdThis is essentially a list, but the elements must have names and are all the same length.
Examples
x <- ts_dataframe(a = ts_integer(1), b = ts_character(1))
x$check(data.frame(a = 1L, b = "a"))
#> a b
#> 1 1 a
ts_dataframe.RdThis is essentially a list, but the elements must have names and are all the same length.
x <- ts_dataframe(a = ts_integer(1), b = ts_character(1))
x$check(data.frame(a = 1L, b = "a"))
#> a b
#> 1 1 a