Date on the x-axis in Holt-Winters graph R
问题 I am trying to plot the date as the x-axis in a Holt-Winters graph in R. I have searched for this topic on this site and many others with no luck. I am aware of using xaxt="n" and then axis() for most plots. The following code works for a normal plot: plot(date,sold, xaxt="n", main="Quantity Widgets Sold") axis(1,date,format(date,"%d %b", cex.axis=0.7)) so I know the axis function is working properly. However, this approach does not work with the Holt-Winters plot. This is the code I have now