Displaying 2 results from an estimated 2 matches for "year6".
Did you mean:
year
2008 Oct 12
0
false convergence (8) after removal of the two-way interaction
...-2.671e-01 5.719e-01 -0.4670 0.64050
year2 4.888e-01 4.792e-01 1.0199 0.30780
year3 -2.720e+00 1.169e+00 -2.3260 0.02002 *
year4 1.287e+00 4.211e-01 3.0569 0.00224 **
year5 -1.180e-01 4.195e-01 -0.2812 0.77855
year6 7.367e-01 4.249e-01 1.7340 0.08292 .
VAR1 -2.083e-02 4.826e-02 -0.4317 0.66596
VAR4 4.022e-03 3.500e-03 1.1491 0.25050
VAR5 -5.274e-02 2.622e-02 -2.0114 0.04428 *
year1:VAR1 -1.504e-01 1.193e-01 -1.2609 0.20735
year2:VAR1...
2007 Jul 04
0
how to plot a monthplot from a ts object where all individual years are shown (e.g. as lines) and can be compared with a "average or median " year?
...rt=2000,end=c(2000,46))
year1 <- window(forest, start=2001,end=c(2001,46))
year2 <- window(forest, start=2002,end=c(2002,46))
year3 <- window(forest, start=2003,end=c(2003,46))
year4 <- window(forest, start=2004,end=c(2004,46))
year5 <- window(forest, start=2005,end=c(2005,46))
year6 <- window(forest, start=2006,end=c(2006,46))
plot(1:46,years[,1], col=2)
lines(1:46,years[,2], col=3)
lines(1:46,years[,3], col=4)
lines(1:46,years[,4], col=5)
lines(1:46,years[,5], col=6)
lines(1:46,years[,6], col=7)
lines(1:46,years[,7], col=8)
Are there other options to be able...