Hey,
So in R I have a tibble that is 1 x 9 and what I want to do is basically take those 9 variables and move them out of the tibble and become their own, free, variables.
Aka I want to turn something like:
df <- tibble::tibble(a = 1, b = 2, c = 3)
into
a <- 1
b <- 2
c <- 3
Without having to either individual put each variable into a new one with
a <- df$a
b <- df$b
c <- df$c
Things I have tried:
tibble::deframe(df)
unlist(df)
Is there like a single function somewhere that can do this or do I have to faff about?