Displaying 1 result from an estimated 1 matches for "xtimerang".
Did you mean:
xtimerange
2008 Jul 15
0
creating axis of the plot before data are plotted -- solved
...05219312
25.19333 -0.06310108 0.01122596 0.02510501 0.015560052 -0.01741544
-0.03004161 0.008608083
25.21667 -0.06362390 0.01073240 0.02882440 0.021066152 -0.02108871
-0.02228662 0.012336997
....
The rowname is printed as first at the beginning of the line. Now, I define
the X-axis range:
> XTimeRange <- seq(from=as.numeric(rownames(data_svd$u)[1]),
to=as.numeric(rownames(data_svd$u)[nrow(data_svd$u)]),
length=nrow(data_svd$u))
and plot the empty plot:
> Components <- seq(1:4) # first four columns from the data-matrix
> plot(c(XTimeRange[1], XTimeRange[length(XTimeRange)]),
c(m...