Re: [R] How to Label Certain Lags for a PACF Graph

2009-09-11 Thread Henrique Dallazuanna
Try this: pacf(data$R1, main = "Series R1 Residuals", xaxt = 'n') axis(1, c(1, axTicks(1))) On Fri, Sep 11, 2009 at 1:02 PM, Stephanie Cooke wrote: > When I use the command for PACF, lags 5, 10, 15, and 20 are labeled. I > would > like to label lag 1. I would greatly appreciate if someone could

Re: [R] How to Label Certain Lags for a PACF Graph

2009-09-11 Thread Jorge Ivan Velez
Hi Stephanie, Take a look at the "xaxt" argument under ?par as well as ?axis. Here is an example modified from ?pacf : acf(lh, xaxt = "n") axis(1, 0:16, 0:16, cex.axis = 0.8) HTH, Jorge On Fri, Sep 11, 2009 at 12:02 PM, Stephanie Cooke wrote: > When I use the command for PACF, lags 5, 10,

[R] How to Label Certain Lags for a PACF Graph

2009-09-11 Thread Stephanie Cooke
When I use the command for PACF, lags 5, 10, 15, and 20 are labeled. I would like to label lag 1. I would greatly appreciate if someone could tell me how to do this. Below is the command that I am using: pacf(data$R1,main="Series R1 Residuals") [[alternative HTML version deleted]] __