converts string with parameter values to tibble

param_string_2_tibble(param_string)

Arguments

param_string

character

Value

tibble with columns names equal to parameter names

Details

Converts string with parameter values to tibble. Parameters should be separated by comma.

Examples

param_string_2_tibble("q=3, p=4, v='ml', qur=mlp")
#> # A tibble: 1 x 4 #> q p v qur #> <dbl> <dbl> <chr> <chr> #> 1 3 4 ml mlp