Lets take the following DF
> df <- data.frame(var1=5,var2=6,var3=7)
> df
var1 var2 var3
1 5 6 7
>
i now want to automatically have three variables been "created" and added to the global environement with their respective values, like so:
var1 <- 5
var2 <- 6
var3 <- 7
How can i do it?
Thank you in advance. André