Re: [R] lag.plot showing only lines....

2023-08-28 Thread akshay kulkarni
dear Eric, Working...! thanks a lot! THanking you, Yours sincerely, AKSHAY M KULKARNI From: Eric Berger Sent: Monday, August 28, 2023 8:37 PM To: akshay kulkarni Cc: R help Mailing list Subject: Re: [R] lag.plot showing only lines Hi Akshay

Re: [R] lag.plot showing only lines....

2023-08-28 Thread Eric Berger
Hi Akshay, I have never used this function before but according to ?lag.plot you simply need to pass the argument do.lines=FALSE. HTH, Eric On Mon, Aug 28, 2023 at 5:45 PM akshay kulkarni wrote: > > Dear members, > I am using the following code: > > lag.plot(ygrpch(OHLC

[R] lag.plot showing only lines....

2023-08-28 Thread akshay kulkarni
Dear members, I am using the following code: lag.plot(ygrpch(OHLCData[[i]]),lags=4) But instead of dots, it is showing lines, which I don't know how to interpret. How to make it plot dots? This is working properly: lag.plot(na_interpolation(OHLCData[[i]][,4]),lags=4) I