Displaying 1 result from an estimated 1 matches for "scaled_array1".
2009 May 13
2
plotting multiple data sources
...e, x$values, type='l'), but then later if I want to
plot the other data with lines()
I can't plot them anymore, cause it seems that the lines() wants the
other data X-axis values to
be dates. I think I was able to draw them referencing the x$date i.e.
something like this :
lines(x$date,scaled_array1)
but isn't there some easier way, especially if it can autoscale the
new data too.
Then my next question is how to change the axis labels so it does show
x-axis label only every
n-th tick.
AFAIR I was able to force it to show date every tick with axis() and
even positioned it vertically,
but a...