This function converts a named numeric vector to a table.
Examples
# Convert a named numeric vector to a table
vec <- c(a = 1, b = 2, c = 3)
namedNumericToTable(vec)
#>
#> a b c
#> 1 2 3
This function converts a named numeric vector to a table.
# Convert a named numeric vector to a table
vec <- c(a = 1, b = 2, c = 3)
namedNumericToTable(vec)
#>
#> a b c
#> 1 2 3