[R] NLME: Limitations of using identify to interact with scatterplots?

2006-08-17 Thread Greg Distiller
I have a quick question regarding the use of identify to interact with points on a scatterplot. My question is essentially: can identify be used when one is plotting model objects to generate diagnostic plots? Specifically I am using NLME. For example, I am plotting the fitted values on the x

Re: [R] NLME: Limitations of using identify to interact with scatterplots?

2006-08-17 Thread Douglas Bates
Most plotting functions in the nlme package use lattice graphics functions based on the grid package. Identify will not work with lattice graphics. I'm not sure if there is a replacement. On 8/17/06, Greg Distiller [EMAIL PROTECTED] wrote: I have a quick question regarding the use of identify

Re: [R] NLME: Limitations of using identify to interact with scatterplots?

2006-08-17 Thread Paul Murrell
Hi Take a look at panel.identify() (in the 'lattice' package). I'm not sure if it will help you because I cannot run your example code. Paul Douglas Bates wrote: Most plotting functions in the nlme package use lattice graphics functions based on the grid package. Identify will not work

Re: [R] NLME: Limitations of using identify to interact with scatterplots?

2006-08-17 Thread Andrew Robinson
Many useful diagnostic plots can be recreated in the usual plot() framework, with only a little coding effort. In this case, I would imagine that plot(dframe$log2game, fitted(D2C29.nlme)) abline(0,1) should get pretty close, if the name of the dataframe containing the variable is 'dframe'.