In R I'm want to plot a time-series using the base plotting system and I already have a list of data that is sorted by time. I'm trying to figure out how to get the the x axis to show the days of the week("Monday, "Tuesday", etc.) instead of showing integer values.
When I call something like
plot(ts(my_values, frequency = 365, start = c(2000, 1)))
For instance I get the x-axis starting at 2000 and having the last notch say 2008. I tried passing Strings for the start attribute, but I get the error:
Error in start[2L] - 1 : non-numeric argument to binary operator
So I'm guessing I have to provide a numeric value to start. Any suggestions on how to get this done?