I want to create a new column to a data frame using a formula from another variable.
Example:
I have a data set "aa" is;
x y
2 3
4 5
6 7
My R code is;
>bb <- "x+y-2"
>attach(aa)
>aa$z<- bb
>detach(aa)
the result is;
x y z
2 3 x+y-2
4 5 x+y-2
6 7 x+y-2
but I want like this;
x y z
2 3 3
4 5 7
6 7 11
Could you please help me..