Dear R
I recently created some variables in R as in I opened a data set and then
produced log base 10 transformations on some of the variables. When I ask R
to do a simple x, y plot it recognises the raw data but does not recognise
the log transformed variables. It says

> plot(logbrw, ParaSleep, type="n")
Error in plot(logbrw, ParaSleep, type = "n") : 
        Object "logbrw" not found
> text(logbrw, ParaSleep, labels=row.names(sleep), cex=0.8, col="blue")
Error in text(logbrw, ParaSleep, labels = row.names(sleep), cex = 0.8,  : 
        Object "logbrw" not found


So do I have to somehow change the data for R to recognise the newly created
variables?

What should I do?

brett

______________________________________________
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to