Dear Andy, The problem here is a name clash -- the data frame name (x) in the global environment is being shadowed by a local variable of the same name.
Clearly this is undesirable, and I'll try to figure out a way to avoid it for the next version of the Rcmdr package, but an immediate solution is to use a different name, such as mydata. (I assume that you tried the "Data -> Active data set -> Select active data set" and found that the data frame x wasn't listed as it should have been.) Thanks for bringing the problem to my attention. John On Tue, 24 Jun 2003 [EMAIL PROTECTED] wrote: > Hi, > > This seems a very basic problem, but I cannot seem to find the solution to > it. > > I am trying to use Rcmdr on a data frame I created in my current R session. > More specifically, I did > > x <- data.frame(matrix(0, ncol=3, nrow=5)) > library(Rcmdr) > > Now I would like to be able to edit, view and perhaps analyze x, but I > cannot seem to figure out how to make it active. Any hint will be welcome. > > Andy > > __________________________________ > Andy Jaworski > Engineering Systems Technology Center > 3M Center, 518-1-01 > St. Paul, MN 55144-1000 > ----- > E-mail: [EMAIL PROTECTED] > Tel: (651) 733-6092 > Fax: (651) 736-3122 > > ______________________________________________ > [EMAIL PROTECTED] mailing list > https://www.stat.math.ethz.ch/mailman/listinfo/r-help > > ______________________________________________ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help
