Modifying plot title and Y axis label when plotting acf & ccf

前端 未结 1 1960
陌清茗
陌清茗 2021-01-24 04:35

I have the following cross correlation function (ccf) with an acf class which I am trying to plot:

> data.ccf<-structure(list(acf = structure(         


        
相关标签:
1条回答
  • 2021-01-24 05:16

    You can try:

    plot(data.ccf, main = "", ylab = "")
    

    or

    plot(data.ccf, main = NA, ylab = NA)
    

    both of which result in the following for me:

    enter image description here

    0 讨论(0)
提交回复
热议问题