R for Windows, version 2.2. I am trying the following code: BLAH.lme4 <- lme(fixed = ...., data = ...., random ....) plot(BLAH.lme4, resid(.,type = "p") ~ fitted(.) | GROUP, id = 0.05, adj = -0.3, idLabels = BLAH$VALUE, main = "Pearson Residuals vs. Fitted Values, by Group") When I use plot( ), it generates a nice plot. However, no matter what I use for "adj = ..." I cannot get the observation labels to shift up, down, left or right. How can I do this? I am trying to follow along with the example in Pinheiro and Bates, page 176. Thanks much, Greg
I apologize for the second posting, my other email address died today. I am using R for Windows, version 2.2. Here is my code: plot(FOO.lme4, resid(.,type = "p") ~ fitted(.) | LOT, id = 0.05, adj = -0.3, idLabels = RO54F$VALUE, main = "Pearson Residuals vs. Fitted Values, by Lot", between = list(x .5, y = .5))
I apologize for the second posting, my other email address died today. I am using R for Windows, version 2.2. Here is my code: plot(FOO.lme4, resid(.,type = "p") ~ fitted(.) | GROUP, id = 0.05, adj = -0.3, idLabels = FOO$value, main = "Pearson Residuals vs. Fitted Values, by Group", between = list(x = .5, y = .5)) The plot looks fine, but the "adj = -0.3" option seems to have no effect on the labels that are added to identify potential outliers. I would like to offset the FOO$value text that is currently being displayed right on top of several pearson residuals. How can I do this? Thanks much, Greg