This function returns the given data frame as a numeric matrix, using as.numeric to convert any columns in the data frame that are not numeric. A stop() error is thrown if there is not enough data in the data frame.

validate_raw_dataframe(raw_dataframe)

Arguments

raw_dataframe

The raw, unimputed data frame.

Value

A numeric matrix with converted values and names taken from the data frame.

Examples

raw_dataframe <- data.frame(id = rep(1, times = 5), tijdstip = c(1, 3, 5, 6, 7), home = c(1, 0, 0, NA, 1)) autovarCore:::validate_raw_dataframe(raw_dataframe)
#> id tijdstip home #> [1,] 1 1 1 #> [2,] 1 3 0 #> [3,] 1 5 0 #> [4,] 1 6 NA #> [5,] 1 7 1