I want to map values from a named list in R to a dataframe. Is there a equivalent of pandas map function in R?
list = (a=1, b=2)
df = data.frame(a)
df.map(list)
in r?
I want to map values of list onto df.
I want to map values from a named list in R to a dataframe. Is there a equivalent of pandas map function in R?
list = (a=1, b=2)
df = data.frame(a)
df.map(list)
in r?
I want to map values of list onto df.