I´m trying to automate a task in R. I need to create an object named with a expression that I extracted from a table. In this example the object is P1 and the named is extracted with as.expression.
P1<-(cbind(table.df[1,], table.df.sum))
P1TEXT<-as.expression(row.names(Table.df)[1])
I want P1 to be named with the expression extracted by P1TEXT Thank you very much