Eksplorasi dan Pemulusan Data Time Series

Kelompok 5

P2-MPDW 2022

Anggota:

Hanung Safrizal (G1401201050)
Maulana Ahsan Fadillah (G1401201062)
Muhammad Irsyad Robbani (G1401201064)
Muhammad Raziv Zulfikar (G1401201083)
Dhea Puspita Adinda (G1401201090)

Pendahuluan

Latar Belakang

Beras merupakan makanan pokok bagi sebagian besar masyarakat Indonesia. Konsumsi beras di Indonesia meningkat setiap tahunnya seiring dengan meningkatnya jumlah penduduk di Indonesia. Ketergantungan masyarakat Indonesia terhadap beras bisa menimbulkan masalah jika ketersediaan beras sudah tidak dapat tercukupi. Pemenuhan kebutuhan dan stabilitas harga beras merupakan isu yang tetap relevan dari waktu ke waktu. Jumlah penduduk yang besar menjadikan permasalahan beras bukan hanya pada jumlah ketersediaan dan harga saja, namun termasuk keberagaman kualitas dan jenis produk beras (BPS 2009). Pada awal tahun 2018 harga beras mengalami peningkatan. Kenaikan harga beras ini jika terus dibiarkan akan menyebabkan terjadinya inflasi yang berdampak pada melambatnya pertumbuhan ekonomi nasional serta dampak negatif lainnya. Dalam rangka perumusan kebijakan pengendalian inflasi maka data dan informasi terkait proyeksi keadaan pasar sangat dibutuhkan. Oleh karena itu, pemodelan harga beras di Indonesia sangat perlu dilakukan.

Tujuan

  1. Mengeksplorasi dan forecasting data time series harga beras premium di Indonesia per bulan pada tahun 2013-2022.

Tinjauan Pustaka

Metode Single Moving Average

Metode single moving average adalah metode peramalan yang menggunakan sejumlah data aktual permintaan yang baru untuk membangkitkan nilai ramalan untuk permintaan dimasa yang akan datang.(Naufal dan Andrean, 2017).

Metode Double Moving Average

Metode Double Moving Average adalah merupakan suatu metode peramalan yang dilakukan dengan menghitung nilai rata-rata bergerak sebanyak dua kali, lalu dilanjutkan dengan meramal menggunakan suatu persamaan. Metode DMA digunakan untuk mengatasi galat sistematis yang terjadi apabila rata-rata bergerak data dipakai pada data yang memiliki tren. Metode ini merupakan pengembangan dari metode SMA (Muzaki 2022).

Metode Single Exponential Smoothing

Metode Single Exponential Smoothing adalah metode yang menunjukan pembobotan menurun secara eksponensial terhadap nilai observasi yang lebih tua. Yaitu nilai yang lebih baru diberikan bobot yang relatif lebih besar dibanding nilai observasi yang lebih lama. Metode ini memberikan sebuah pembobotan eksponensial rata-rata bergerak dari semua nilai observasi sebelumnya (Hartono et.al, 2012).

Metode Double Exponential Smoothing

Metode Double Exponential Smoothing merupakan metode yang digunakan untuk meramalkan data yang mengalami trend kenaikan. Jika data yang digunakan semakin banyak dalam perhitungan peramalan, maka persentase error peramalannya akan semakin kecil dan sebaliknya (Hanief dan Purwanto 2017).

Winter Smoothing

Metode pemulusan eksponensial linear dari Winter’s digunakan untuk peramalan jika data memiliki komponen musiman. Metode winter didasarkan pada tiga persamaan pemulusan, yaitu stasioneritas, trend, dan musiman. Holt Winter sendiri memiliki dua metode yang berbeda, bergantung pada sifat musiman itu sendiri, yaitu aditif atau multiplikatif.

SSE

Sum Square Error (SSE) menjumlahkan kuadrat dari kesalahan.

MSE

Mean Squared Error (MSE) merata-ratakan kuadrat dari kesalahan menggunakan penyebut n tanpa memperhatikan derajat bebas model. MSE banyak dipakai dalam optimalisasi pembobotan karena memberikan ketelitian yang lebih baik.

RMSE

Root Mean Square Error (RMSE) diperoleh dengan mengakarkan hasil MSE.

MAD

Simpangan absolut rata-rata atau mean absolute deviation (MAD) merata-ratakan nilai absolut kesalahan peramalan dalam unit ukuran yang sama seperti data aktual.

MAPE

Mean absolute percentage error (MAPE) merata-ratakan persentase absolut kesalahan dan memberikan gambaran seberapa kesalahan peramalan dibanding dengan nilai sebenarnya. MAPE banyak dipakai dalam perbandingan data-data yang mempunyai skala interval waktu yang berbeda.

Package dan Data

1. Memanggil Library

Packages yang digunakan dalam analisis eksplorasi dan pemulusan data deret waktu, sebagai berikut:

library(forecast)
## Registered S3 method overwritten by 'quantmod':
##   method            from
##   as.zoo.data.frame zoo
library(TTR)
library(TSA)
## Registered S3 methods overwritten by 'TSA':
##   method       from    
##   fitted.Arima forecast
##   plot.Arima   forecast
## 
## Attaching package: 'TSA'
## The following objects are masked from 'package:stats':
## 
##     acf, arima
## The following object is masked from 'package:utils':
## 
##     tar
library(readxl)
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union

2. Memanggil Data

Data yang digunakan pada pengerjaan tugas analisis eksplorasi dan pemulusan deret waktua adalah data beras premium di Indonesia per bulan dari tahun 2013 hingga 2022. Data diperoleh dari web BPS Indonesia ( https://www.bps.go.id/indicator/36/500/1/harga-beras-di-penggilingan-menurut-kualitas.html). Pada data harga beras terdapat 3 peubah yang digunakan yaitu beras premium, medium, dan luar kualitas tetapi peubah yang digunakan dalam eksplorasi kali ini adalah data beras premium dengan jumlah amatan sebanyak 115 amatan.

data <- read_xlsx("C:/0 SEM5/MPDW/p1/Data Kelompok 15.xlsx")
data$Premium <- as.numeric(data$Premium)

3. Split Data

Spliting data dilakukan untuk memisahkan data menjadi dua bagian yaitu data training dan data testing. Data training digunakan untuk menentukan model yang sesuai dengan keseluruhan data dan membuat model, sedangkan data testing digunakan untuk menguji performa dari model yang telah didapatkan. Jumlah data training sebanyak 92 amatan (Januari 2013 hingga Agustus 2020) dan data testing sebanyak 23 amatan (September 2020 hingga Juli 2022).

train <- data[1:92, 3]
test <- data[93:115, 3]
data.premium <- ts(data[,3])
train.ts <- ts(train)
test.ts <- ts(test)

Eksplorasi Data Analisis

Plot Data Time Series

Plot Time Series Harga Beras Premium

data.premium <- ts(data$Premium, start = 2013, frequency = 12)
ts.plot(data.premium, main = "Harga Beras Premium Tahun 2013 - 2022", ylab = "Harga", lwd = 1.5)
points(data.premium)
legend("topleft", c("Premium"), cex = 0.7,
       col = c("black", "red", "blue"), lty = 1)

Single Moving Average (SMA)

Pemulusan SMA dengan n=4

data.sma<-SMA(train.ts, n=4)
data.sma
## Time Series:
## Start = 1 
## End = 92 
## Frequency = 1 
##  [1]        NA        NA        NA  7641.970  7578.912  7522.652  7584.505
##  [8]  7669.647  7719.840  7794.297  7818.372  7872.230  7987.885  8102.180
## [15]  8170.402  8156.205  8106.365  8072.450  8081.307  8183.692  8258.962
## [22]  8316.285  8397.995  8570.225  8923.462  9270.422  9524.597  9551.942
## [29]  9298.530  9081.195  8924.512  8924.265  9107.827  9242.740  9397.527
## [36]  9531.725  9601.575  9683.997  9685.892  9551.942  9416.560  9308.970
## [43]  9259.602  9319.485  9301.647  9246.207  9216.955  9210.525  9290.722
## [50]  9359.675  9392.467  9388.222  9389.427  9398.400  9397.187  9425.222
## [57]  9433.822  9448.420  9487.187  9593.100  9812.930 10032.697 10121.150
## [64] 10037.292  9830.785  9604.862  9511.705  9494.982  9507.020  9548.832
## [71]  9611.592  9701.592  9836.355  9927.007  9937.897  9849.550  9687.292
## [78]  9564.192  9490.397  9506.727  9539.812  9575.727  9631.430  9708.495
## [85]  9818.062  9923.470 10008.537 10053.520 10002.012  9961.550  9923.870
## [92]  9909.985
data.ramal<-c(NA,data.sma)
data.ramal #forecast 1 periode ke depan
##  [1]        NA        NA        NA        NA  7641.970  7578.912  7522.652
##  [8]  7584.505  7669.647  7719.840  7794.297  7818.372  7872.230  7987.885
## [15]  8102.180  8170.402  8156.205  8106.365  8072.450  8081.307  8183.692
## [22]  8258.962  8316.285  8397.995  8570.225  8923.462  9270.422  9524.597
## [29]  9551.942  9298.530  9081.195  8924.512  8924.265  9107.827  9242.740
## [36]  9397.527  9531.725  9601.575  9683.997  9685.892  9551.942  9416.560
## [43]  9308.970  9259.602  9319.485  9301.647  9246.207  9216.955  9210.525
## [50]  9290.722  9359.675  9392.467  9388.222  9389.427  9398.400  9397.187
## [57]  9425.222  9433.822  9448.420  9487.187  9593.100  9812.930 10032.697
## [64] 10121.150 10037.292  9830.785  9604.862  9511.705  9494.982  9507.020
## [71]  9548.832  9611.592  9701.592  9836.355  9927.007  9937.897  9849.550
## [78]  9687.292  9564.192  9490.397  9506.727  9539.812  9575.727  9631.430
## [85]  9708.495  9818.062  9923.470 10008.537 10053.520 10002.012  9961.550
## [92]  9923.870  9909.985
data.gab<-cbind(aktual=c(train.ts,rep(NA,5)),pemulusan=c(data.sma,rep(NA,5)),ramalan=c(data.ramal,rep(data.ramal[length(data.ramal)],4)))
data.gab #forecast 5 periode ke depan
##         aktual pemulusan   ramalan
##  [1,]  7797.63        NA        NA
##  [2,]  7773.26        NA        NA
##  [3,]  7576.27        NA        NA
##  [4,]  7420.72  7641.970        NA
##  [5,]  7545.40  7578.912  7641.970
##  [6,]  7548.22  7522.652  7578.912
##  [7,]  7823.68  7584.505  7522.652
##  [8,]  7761.29  7669.647  7584.505
##  [9,]  7746.17  7719.840  7669.647
## [10,]  7846.05  7794.297  7719.840
## [11,]  7919.98  7818.372  7794.297
## [12,]  7976.72  7872.230  7818.372
## [13,]  8208.79  7987.885  7872.230
## [14,]  8303.23  8102.180  7987.885
## [15,]  8192.87  8170.402  8102.180
## [16,]  7919.93  8156.205  8170.402
## [17,]  8009.43  8106.365  8156.205
## [18,]  8167.57  8072.450  8106.365
## [19,]  8228.30  8081.307  8072.450
## [20,]  8329.47  8183.692  8081.307
## [21,]  8310.51  8258.962  8183.692
## [22,]  8396.86  8316.285  8258.962
## [23,]  8555.14  8397.995  8316.285
## [24,]  9018.39  8570.225  8397.995
## [25,]  9723.46  8923.462  8570.225
## [26,]  9784.70  9270.422  8923.462
## [27,]  9571.84  9524.597  9270.422
## [28,]  9127.77  9551.942  9524.597
## [29,]  8709.81  9298.530  9551.942
## [30,]  8915.36  9081.195  9298.530
## [31,]  8945.11  8924.512  9081.195
## [32,]  9126.78  8924.265  8924.512
## [33,]  9444.06  9107.827  8924.265
## [34,]  9455.01  9242.740  9107.827
## [35,]  9564.26  9397.527  9242.740
## [36,]  9663.57  9531.725  9397.527
## [37,]  9723.46  9601.575  9531.725
## [38,]  9784.70  9683.997  9601.575
## [39,]  9571.84  9685.892  9683.997
## [40,]  9127.77  9551.942  9685.892
## [41,]  9181.93  9416.560  9551.942
## [42,]  9354.34  9308.970  9416.560
## [43,]  9374.37  9259.602  9308.970
## [44,]  9367.30  9319.485  9259.602
## [45,]  9110.58  9301.647  9319.485
## [46,]  9132.58  9246.207  9301.647
## [47,]  9257.36  9216.955  9246.207
## [48,]  9341.58  9210.525  9216.955
## [49,]  9431.37  9290.722  9210.525
## [50,]  9408.39  9359.675  9290.722
## [51,]  9388.53  9392.467  9359.675
## [52,]  9324.60  9388.222  9392.467
## [53,]  9436.19  9389.427  9388.222
## [54,]  9444.28  9398.400  9389.427
## [55,]  9383.68  9397.187  9398.400
## [56,]  9436.74  9425.222  9397.187
## [57,]  9470.59  9433.822  9425.222
## [58,]  9502.67  9448.420  9433.822
## [59,]  9538.75  9487.187  9448.420
## [60,]  9860.39  9593.100  9487.187
## [61,] 10349.91  9812.930  9593.100
## [62,] 10381.74 10032.697  9812.930
## [63,]  9892.56 10121.150 10032.697
## [64,]  9524.96 10037.292 10121.150
## [65,]  9523.88  9830.785 10037.292
## [66,]  9478.05  9604.862  9830.785
## [67,]  9519.93  9511.705  9604.862
## [68,]  9458.07  9494.982  9511.705
## [69,]  9572.03  9507.020  9494.982
## [70,]  9645.30  9548.832  9507.020
## [71,]  9770.97  9611.592  9548.832
## [72,]  9818.07  9701.592  9611.592
## [73,] 10111.08  9836.355  9701.592
## [74,] 10007.91  9927.007  9836.355
## [75,]  9814.53  9937.897  9927.007
## [76,]  9464.68  9849.550  9937.897
## [77,]  9462.05  9687.292  9849.550
## [78,]  9515.51  9564.192  9687.292
## [79,]  9519.35  9490.397  9564.192
## [80,]  9530.00  9506.727  9490.397
## [81,]  9594.39  9539.812  9506.727
## [82,]  9659.17  9575.727  9539.812
## [83,]  9742.16  9631.430  9575.727
## [84,]  9838.26  9708.495  9631.430
## [85,] 10032.66  9818.062  9708.495
## [86,] 10080.80  9923.470  9818.062
## [87,] 10082.43 10008.537  9923.470
## [88,] 10018.19 10053.520 10008.537
## [89,]  9826.63 10002.012 10053.520
## [90,]  9918.95  9961.550 10002.012
## [91,]  9931.71  9923.870  9961.550
## [92,]  9962.65  9909.985  9923.870
## [93,]       NA        NA  9909.985
## [94,]       NA        NA  9909.985
## [95,]       NA        NA  9909.985
## [96,]       NA        NA  9909.985
## [97,]       NA        NA  9909.985

Hasil peramalan dengan menggunakan N=5 pada metode SMA adalah sebesar 9909.985

Plot time series

ts.plot(data.gab[,1], xlab="Time Period ", ylab="Sales", main= "SMA N=4 Data Premium")
points(data.gab[,1])
lines(data.gab[,2],col="green",lwd=2)
lines(data.gab[,3],col="red",lwd=2)
legend("topleft",c("data aktual","data pemulusan","data peramalan"), lty=8, col=c("black","green","red"), cex=0.8)

Menghitung nilai keakuratan

data.premium=as.numeric(data.premium)
error.sma = test.ts-data.ramal[1:length(test.ts)]
SSE.sma = sum(error.sma[5:length(test.ts)]^2)
MSE.sma = mean(error.sma[5:length(test.ts)]^2)
MAPE.sma = mean(abs((error.sma[5:length(test.ts)]/test.ts[5:length(test.ts)])*100))

akurasi.sma <- matrix(c(SSE.sma, MSE.sma, MAPE.sma))
row.names(akurasi.sma)<- c("SSE", "MSE", "MAPE")
colnames(akurasi.sma) <- c("Akurasi m = 4")
akurasi.sma
##      Akurasi m = 4
## SSE   5.503603e+07
## MSE   2.896633e+06
## MAPE  1.746448e+01

Double Moving Average (DMA)

Pemulusan DMA dengan n=4

dma <- SMA(data.sma, n = 4)
At <- 2*data.sma - dma
Bt <- 2/(4-1)*(data.sma - dma)
data.dma<- At+Bt
data.ramal2<- c(NA, data.dma)

t = 1:5
f = c()

for (i in t) {
  f[i] = At[length(At)] + Bt[length(Bt)]*(i)
}

data.gab2 <- cbind(aktual = c(train.ts,rep(NA,5)), pemulusan1 = c(data.sma,rep(NA,5)),pemulusan2 = c(data.dma, rep(NA,5)),At = c(At, rep(NA,5)), Bt = c(Bt,rep(NA,5)),ramalan = c(data.ramal2, f[-1]))
data.gab2
##         aktual pemulusan1 pemulusan2        At          Bt   ramalan
##  [1,]  7797.63         NA         NA        NA          NA        NA
##  [2,]  7773.26         NA         NA        NA          NA        NA
##  [3,]  7576.27         NA         NA        NA          NA        NA
##  [4,]  7420.72   7641.970         NA        NA          NA        NA
##  [5,]  7545.40   7578.912         NA        NA          NA        NA
##  [6,]  7548.22   7522.652         NA        NA          NA        NA
##  [7,]  7823.68   7584.505   7588.663  7587.000    1.663333        NA
##  [8,]  7761.29   7669.647   7804.178  7750.366   53.812083  7588.663
##  [9,]  7746.17   7719.840   7879.305  7815.519   63.785833  7804.178
## [10,]  7846.05   7794.297   7964.672  7896.522   68.150000  7879.305
## [11,]  7919.98   7818.372   7931.428  7886.206   45.222083  7964.672
## [12,]  7976.72   7872.230   7990.638  7943.275   47.363333  7931.428
## [13,]  8208.79   7987.885   8187.366  8107.574   79.792500  7990.638
## [14,]  8303.23   8102.180   8363.869  8259.193  104.675417  8187.366
## [15,]  8192.87   8170.402   8399.116  8307.631   91.485417  8363.869
## [16,]  7919.93   8156.205   8242.933  8208.242   34.691250  8399.116
## [17,]  8009.43   8106.365   8060.660  8078.942  -18.282083  8242.933
## [18,]  8167.57   8072.450   7982.607  8018.544  -35.937083  8060.660
## [19,]  8228.30   8081.307   8043.350  8058.533  -15.182917  7982.607
## [20,]  8329.47   8183.692   8304.924  8256.431   48.492500  8043.350
## [21,]  8310.51   8258.962   8442.061  8368.822   73.239583  8304.924
## [22,]  8396.86   8316.285   8493.324  8422.508   70.815417  8442.061
## [23,]  8555.14   8397.995   8579.264  8506.756   72.507500  8493.324
## [24,]  9018.39   8570.225   8877.489  8754.583  122.905417  8579.264
## [25,]  9723.46   8923.462   9542.580  9294.933  247.647083  8877.489
## [26,]  9784.70   9270.422  10070.250  9750.319  319.930833  9542.580
## [27,]  9571.84   9524.597  10278.632  9977.018  301.613750 10070.250
## [28,]  9127.77   9551.942   9942.503  9786.279  156.224167 10278.632
## [29,]  8709.81   9298.530   9110.458  9185.687  -75.228750  9942.503
## [30,]  8915.36   9081.195   8609.743  8798.324 -188.580833  9110.458
## [31,]  8945.11   8924.512   8441.958  8634.980 -193.021667  8609.743
## [32,]  9126.78   8924.265   8702.831  8791.404  -88.573750  8441.958
## [33,]  9444.06   9107.827   9271.790  9206.205   65.585000  8702.831
## [34,]  9455.01   9242.740   9564.246  9435.644  128.602500  9271.790
## [35,]  9564.26   9397.527   9779.923  9626.965  152.958333  9564.246
## [36,]  9663.57   9531.725   9884.675  9743.495  141.180000  9779.923
## [37,]  9723.46   9601.575   9865.214  9759.758  105.455417  9884.675
## [38,]  9784.70   9683.997   9901.150  9814.289   86.860833  9865.214
## [39,]  9571.84   9685.892   9786.051  9745.987   40.063333  9901.150
## [40,]  9127.77   9551.942   9420.427  9473.033  -52.606250  9786.051
## [41,]  9181.93   9416.560   9136.496  9248.522 -112.025417  9420.427
## [42,]  9354.34   9308.970   9005.851  9127.099 -121.247500  9136.496
## [43,]  9374.37   9259.602   9051.825  9134.936  -83.110833  9005.851
## [44,]  9367.30   9319.485   9308.369  9312.816   -4.446250  9051.825
## [45,]  9110.58   9301.647   9308.683  9305.869    2.814167  9308.369
## [46,]  9132.58   9246.207   9186.994  9210.679  -23.685417  9308.683
## [47,]  9257.36   9216.955   9126.757  9162.836  -36.079167  9186.994
## [48,]  9341.58   9210.525   9155.010  9177.216  -22.205833  9126.757
## [49,]  9431.37   9290.722   9373.422  9340.342   33.080000  9155.010
## [50,]  9408.39   9359.675   9510.018  9449.881   60.137083  9373.422
## [51,]  9388.53   9392.467   9524.334  9471.587   52.746667  9510.018
## [52,]  9324.60   9388.222   9438.974  9418.673   20.300417  9524.334
## [53,]  9436.19   9389.427   9401.060  9396.407    4.652917  9438.974
## [54,]  9444.28   9398.400   9408.851  9404.671    4.180417  9401.060
## [55,]  9383.68   9397.187   9403.651  9401.066    2.585417  9408.851
## [56,]  9436.74   9425.222   9462.994  9447.886   15.108750  9403.651
## [57,]  9470.59   9433.822   9467.430  9453.987   13.442917  9462.994
## [58,]  9502.67   9448.420   9485.515  9470.677   14.837917  9467.430
## [59,]  9538.75   9487.187   9551.395  9525.712   25.682917  9485.515
## [60,]  9860.39   9593.100   9763.879  9695.567   68.311667  9551.395
## [61,] 10349.91   9812.930  10192.131 10040.451  151.680417  9763.879
## [62,] 10381.74  10032.697  10534.729 10333.916  200.812500 10192.131
## [63,]  9892.56  10121.150  10506.451 10352.331  154.120417 10534.729
## [64,]  9524.96  10037.292  10097.751 10073.567   24.183333 10506.451
## [65,]  9523.88   9830.785   9539.625  9656.089 -116.464167 10097.751
## [66,]  9478.05   9604.862   9115.429  9311.203 -195.773333  9539.625
## [67,]  9519.93   9511.705   9120.945  9277.249 -156.304167  9115.429
## [68,]  9458.07   9494.982   9302.314  9379.381  -77.067500  9120.945
## [69,]  9572.03   9507.020   9469.316  9484.398  -15.081667  9302.314
## [70,]  9645.30   9548.832   9604.162  9582.030   22.131667  9469.316
## [71,]  9770.97   9611.592   9729.902  9682.578   47.323750  9604.162
## [72,]  9818.07   9701.592   9883.814  9810.926   72.888750  9729.902
## [73,] 10111.08   9836.355  10105.958  9998.117  107.841250  9883.814
## [74,] 10007.91   9927.007  10190.125 10084.878  105.247083 10105.958
## [75,]  9814.53   9937.897  10083.205 10025.082   58.122917 10190.125
## [76,]  9464.68   9849.550   9785.962  9811.397  -25.435000 10083.205
## [77,]  9462.05   9687.292   9415.385  9524.148 -108.762917  9785.962
## [78,]  9515.51   9564.192   9238.291  9368.652 -130.360417  9415.385
## [79,]  9519.35   9490.397   9227.963  9332.937 -104.973750  9238.291
## [80,]  9530.00   9506.727   9414.353  9451.302  -36.950000  9227.963
## [81,]  9594.39   9539.812   9564.029  9554.342    9.686667  9414.353
## [82,]  9659.17   9575.727   9654.996  9623.289   31.707500  9564.029
## [83,]  9742.16   9631.430   9744.773  9699.436   45.337083  9654.996
## [84,]  9838.26   9708.495   9866.210  9803.124   63.085833  9744.773
## [85,] 10032.66   9818.062  10042.452  9952.696   89.755833  9866.210
## [86,] 10080.80   9923.470  10178.646 10076.576  102.070417 10042.452
## [87,] 10082.43  10008.537  10248.365 10152.434   95.930833 10178.646
## [88,] 10018.19  10053.520  10224.558 10156.143   68.415000 10248.365
## [89,]  9826.63  10002.012  10010.558 10007.140    3.418333 10224.558
## [90,]  9918.95   9961.550   9886.792  9916.695  -29.903333 10010.558
## [91,]  9931.71   9923.870   9821.590  9862.502  -40.912083  9886.792
## [92,]  9962.65   9909.985   9844.369  9870.616  -26.246250  9821.590
## [93,]       NA         NA         NA        NA          NA  9844.369
## [94,]       NA         NA         NA        NA          NA  9818.123
## [95,]       NA         NA         NA        NA          NA  9791.877
## [96,]       NA         NA         NA        NA          NA  9765.631
## [97,]       NA         NA         NA        NA          NA  9739.384

Hasil peramalan dengan menggunakan N=5 selama 5 periode kedepan pada metode DMA terus menurun dari 9844.369 sampai 9739.384

Plot time series

data.gab2 <- ts(data.gab2, start = 2013, frequen = 12)
ts.plot(data.gab2[,1], xlab="Time Period ", ylab="Sales", main= "DMA N=4 Data Premium")
points(data.gab2[,1])
lines(data.gab2[,3],col="green",lwd=2)
lines(data.gab2[,6],col="red",lwd=2)
legend("topleft",c("data aktual","data pemulusan","data peramalan"), lty=8, col=c("black","green","red"), cex=0.8)

Menghitung nilai keakuratan

error.dma = test.ts-data.ramal2[1:length(test.ts)]
SSE.dma = sum(error.dma[8:length(test.ts)]^2)
MSE.dma = mean(error.dma[8:length(test.ts)]^2)
MAPE.dma = mean(abs((error.dma[8:length(test.ts)]/test.ts[8:length(test.ts)])*100))

akurasi.dma <- matrix(c(SSE.dma, MSE.dma, MAPE.dma))
row.names(akurasi.dma)<- c("SSE", "MSE", "MAPE")
colnames(akurasi.dma) <- c("Akurasi m = 4")
akurasi.dma
##      Akurasi m = 4
## SSE   3.626961e+07
## MSE   2.266851e+06
## MAPE  1.544327e+01
akurasi.sma
##      Akurasi m = 4
## SSE   5.503603e+07
## MSE   2.896633e+06
## MAPE  1.746448e+01

Dengan metode SMA, diketahui SSE, MSE, dan MAPE bernilai lebih kecil Metode DMA lebih baik digunakan

Looping for Best M value

SMA

m = 2:30
akurasi.full <- c()
data.premium <- as.numeric(train.ts)

for(i in m){
  data.sma <- SMA(train.ts, n = i)
  data.ramal <- c(NA, data.sma)
  
  error.sma = train.ts - data.ramal[1:length(train.ts)]
  SSE.sma = sum(error.sma[(i+1):length(train.ts)]^2)
  MSE.sma = mean(error.sma[(i+1):length(train.ts)]^2)
  MAPE.sma = mean(abs((error.sma[(i+1):length(train.ts)]/train.ts[(i+1):length(train.ts)])*100))
  
  tabel <- matrix(c(SSE.sma, MSE.sma, MAPE.sma))
  colnames(tabel) <- paste("M =", i)
  rownames(tabel) <- c("SSE", "MSE", "MAPE")
  
  akurasi.full <- cbind(akurasi.full, tabel)
}

akurasi.full
##             M = 2        M = 3        M = 4        M = 5        M = 6
## SSE  5.459499e+06 7.283238e+06 8.491418e+06 9.276257e+06 9.842833e+06
## MSE  6.066110e+04 8.183413e+04 9.649339e+04 1.066236e+05 1.144515e+05
## MAPE 1.907888e+00 2.227631e+00 2.463091e+00 2.614594e+00 2.707575e+00
##             M = 7        M = 8        M = 9       M = 10       M = 11
## SSE  1.027867e+07 1.066370e+07 1.100298e+07 1.118969e+07 1.124946e+07
## MSE  1.209255e+05 1.269489e+05 1.325660e+05 1.364596e+05 1.388822e+05
## MAPE 2.784027e+00 2.810275e+00 2.831640e+00 2.820231e+00 2.812766e+00
##            M = 12       M = 13       M = 14       M = 15       M = 16
## SSE  1.136249e+07 1.158180e+07 1.205307e+07 1.285394e+07 1.383334e+07
## MSE  1.420311e+05 1.466051e+05 1.545265e+05 1.669343e+05 1.820176e+05
## MAPE 2.824536e+00 2.830992e+00 2.887621e+00 2.987942e+00 3.120476e+00
##            M = 17       M = 18       M = 19       M = 20       M = 21
## SSE  1.474939e+07 1.557408e+07 1.639076e+07 1.716706e+07 1.795562e+07
## MSE  1.966585e+05 2.104605e+05 2.245310e+05 2.384315e+05 2.528961e+05
## MAPE 3.226164e+00 3.300948e+00 3.388955e+00 3.467681e+00 3.539298e+00
##            M = 22       M = 23       M = 24       M = 25       M = 26
## SSE  1.858680e+07 1.893754e+07 1.849560e+07 1.622963e+07 1.402497e+07
## MSE  2.655257e+05 2.744572e+05 2.719941e+05 2.422333e+05 2.124996e+05
## MAPE 3.602805e+00 3.631477e+00 3.595435e+00 3.470367e+00 3.355999e+00
##            M = 27       M = 28       M = 29       M = 30
## SSE  1.272690e+07 1.261505e+07 1.315911e+07 1.351123e+07
## MSE  1.957985e+05 1.971101e+05 2.088748e+05 2.179231e+05
## MAPE 3.281780e+00 3.277091e+00 3.364473e+00 3.430072e+00

Nilai error yang terkecil merupakan n optimal, terlihat error yang terkecil ada pada N=2

DMA

m = 2:30
akurasi.full2 <- c()

for(i in m){
  data.sma <- SMA(train.ts, n = i)
  dma <- SMA(data.sma, n = i)
  At <- 2*data.sma - dma
  Bt <- 2/(i - 1) * (data.sma - dma)
  data.dma <- At + Bt
  data.ramal2 <- c(NA, data.dma)
  
  error.dma <- test.ts - data.ramal2[1:length(test.ts)]
  SSE.dma <- sum(error.dma[(i*2):length(test.ts)]^2)
  MSE.dma <- mean(error.dma[(i*2):length(test.ts)]^2)
  MAPE.dma <- mean(abs(error.dma[(i*2):115]/test.ts[(i*2):115]) * 100)
  
  tabel2 <- matrix(c(SSE.dma, MSE.dma, MAPE.dma))
  colnames(tabel2) <- paste("M =", i)
  rownames <- c("SSE", "MSE", "MAPE")
  
  akurasi.full2 <- cbind(akurasi.full2, tabel2)
}

akurasi.full2 <- as.data.frame(akurasi.full2)
View(akurasi.full2)
akurasi.full2
##      M = 2    M = 3    M = 4    M = 5    M = 6    M = 7    M = 8    M = 9
## 1 56798610 46299663 36269609 29156043 23755188 18976467 15119088 10356031
## 2  2839931  2572203  2266851  2082574  1979599  1897647  1889886  1726005
## 3       NA       NA       NA       NA       NA       NA       NA       NA
##    M = 10  M = 11 M = 12 M = 13 M = 14 M = 15 M = 16 M = 17 M = 18 M = 19
## 1 5444252 2563692     NA     NA     NA     NA     NA     NA     NA     NA
## 2 1361063 1281846     NA     NA     NA     NA     NA     NA     NA     NA
## 3      NA      NA     NA     NA     NA     NA     NA     NA     NA     NA
##   M = 20 M = 21 M = 22 M = 23 M = 24 M = 25 M = 26 M = 27 M = 28 M = 29 M = 30
## 1     NA     NA     NA     NA     NA     NA     NA     NA     NA     NA     NA
## 2     NA     NA     NA     NA     NA     NA     NA     NA     NA     NA     NA
## 3     NA     NA     NA     NA     NA     NA     NA     NA     NA     NA     NA

Nilai error yang terkecil merupakan n optimal, terlihat error yang terkecil ada pada N=11

Perbandingan SMA dan DMA

comp <- cbind(akurasi.full[,1], akurasi.full2[,10])
colnames(comp) <- c("SMA","DMA")
rownames(comp) <- c("SSE","MSE","MAPE")
comp <- as.data.frame(comp)
comp
##               SMA     DMA
## SSE  5.459499e+06 2563692
## MSE  6.066110e+04 1281846
## MAPE 1.907888e+00      NA

Jika dibandingkan antara SMA dan DMA pada nilai n optimum, metode DMA menghasilkan error yang lebih kecil dibanding SMA pada ketiga ukuran kebaikan diatas.

Pemulusan Eksponensial

Import data

dataekspo<- read_xlsx("C:/0 SEM5/MPDW/p1/Data Kelompok 15.xlsx")
dataekspo$Premium <- as.numeric(dataekspo$Premium)
str(dataekspo)
## tibble [115 × 7] (S3: tbl_df/tbl/data.frame)
##  $ Tahun        : num [1:115] 2013 2013 2013 2013 2013 ...
##  $ Bulan        : chr [1:115] "Januari" "Februari" "Maret" "April" ...
##  $ Premium      : num [1:115] 7798 7773 7576 7421 7545 ...
##  $ Medium       : chr [1:115] "7697.37" "7645.05" "7503.27" "7290.96" ...
##  $ Luar Kualitas: chr [1:115] "7545.32" "7328.44" "7033.14" "6870.91" ...
##  $ IHK          : num [1:115] 1.03 1.79 2.43 2.32 2.3 3.35 6.75 7.94 7.57 7.66 ...
##  $ Harga Gabah  : chr [1:115] "4333.19" "4265.58" "3783.15" "3669.04" ...

Membentuk objek time series

training<-dataekspo[1:92,3] 
testing<-dataekspo[93:115,3] 
dataekspo.ts<-ts(dataekspo$Premium, start = 2013, frequency = 12) 
training.ts<-ts(training, start = 2013, frequency = 12)
testing.ts<-ts(testing, start = 2020, frequency = 12)

Eksplorasi

dataekspo.ts <- as.numeric(dataekspo.ts)
plot(dataekspo.ts, col="red",main="Plot seluruh data")
points(dataekspo.ts)

plot(training.ts, col="blue",main="Plot data training")
points(training.ts)

plot(testing.ts, col="blue",main="Plot data testing")
points(testing.ts)

Single Exponential

Fungsi Holtwinter

ses1<- HoltWinters(training.ts, gamma = FALSE, beta = FALSE, alpha = 0.2)
plot(ses1)

Fungsi Holtwinter optimal

sesopt<- HoltWinters(training.ts, gamma = FALSE, beta = FALSE)
sesopt
## Holt-Winters exponential smoothing without trend and without seasonal component.
## 
## Call:
## HoltWinters(x = training.ts, beta = FALSE, gamma = FALSE)
## 
## Smoothing parameters:
##  alpha: 0.9999339
##  beta : FALSE
##  gamma: FALSE
## 
## Coefficients:
##       [,1]
## a 9962.648
plot(sesopt)

Fungsi Holtwinter

ramalan1<- forecast(ses1, h=10)
ramalan1$mean
##           Jan      Feb      Mar      Apr      May      Jun Jul Aug      Sep
## 2020                                                               9912.331
## 2021 9912.331 9912.331 9912.331 9912.331 9912.331 9912.331                 
##           Oct      Nov      Dec
## 2020 9912.331 9912.331 9912.331
## 2021

Fungsi Holtwinter optimal

ramalanopt<- forecast(sesopt, h=10)
ramalanopt
##          Point Forecast    Lo 80    Hi 80    Lo 95    Hi 95
## Sep 2020       9962.648 9719.807 10205.49 9591.254 10334.04
## Oct 2020       9962.648 9619.230 10306.07 9437.435 10487.86
## Nov 2020       9962.648 9542.053 10383.24 9319.403 10605.89
## Dec 2020       9962.648 9476.989 10448.31 9219.897 10705.40
## Jan 2021       9962.648 9419.667 10505.63 9132.230 10793.07
## Feb 2021       9962.648 9367.843 10557.45 9052.973 10872.32
## Mar 2021       9962.648 9320.186 10605.11 8980.088 10945.21
## Apr 2021       9962.648 9275.828 10649.47 8912.248 11013.05
## May 2021       9962.648 9234.167 10691.13 8848.532 11076.76
## Jun 2021       9962.648 9194.762 10730.53 8788.267 11137.03

Akurasi Data Training

SSE

ses1<- HoltWinters(training.ts, gamma = FALSE, beta = FALSE, alpha = 0.2)
sse1.train <- ses1$SSE
sse1.train
## [1] 9045657
sseopt.train <- sesopt$SSE
sseopt.train
## [1] 3283102

MSE

mse1.train <- sse1.train/length(training.ts)
mse1.train
## [1] 98322.36
mseopt.train <- sseopt.train/length(training.ts)
mseopt.train
## [1] 35685.89

RMSE

rmse1.train <- sqrt(mse1.train)
rmse1.train
## [1] 313.564
rmseopt.train <- sqrt(mseopt.train)
rmseopt.train
## [1] 188.9071
akurasi.ses1 <- matrix(c(sse1.train, mse1.train, rmse1.train, sseopt.train, mseopt.train, rmseopt.train), nrow=3, ncol=2)
row.names(akurasi.ses1)<- c("SSE", "MSE", "RMSE")
colnames(akurasi.ses1) <- c("alpha 0.2", "alpha 0.99")
akurasi.ses1
##        alpha 0.2   alpha 0.99
## SSE  9045657.450 3283102.1245
## MSE    98322.364   35685.8927
## RMSE     313.564     188.9071

Metode SES memiliki parameter pemulusan yaitu alpha yang bernilai antara 0 dan 1. Pada awal pemulusan, digunakan alpha 0.2. Lalu dilakukan pemulusan dengan alpha yang optimal secara otomatis dengan program, didapatkan alpha sebesar 0.99 . Parameter pemulusan yang dipilih adalah alpha 0.99 karena memiliki error yang lebih kecil.

Double Exponential

des1<- HoltWinters(training.ts, gamma = FALSE, beta = 0.2, alpha = 0.2)
plot(des1)

desopt<- HoltWinters(training.ts, gamma = FALSE)
desopt
## Holt-Winters exponential smoothing with trend and without seasonal component.
## 
## Call:
## HoltWinters(x = training.ts, gamma = FALSE)
## 
## Smoothing parameters:
##  alpha: 1
##  beta : 0.01810342
##  gamma: FALSE
## 
## Coefficients:
##         [,1]
## a 9962.65000
## b   10.61376
plot(desopt)

out<-data.frame()
for(i in seq(0.01,0.99,by=0.01)){
  for(j in seq(0.01,0.99,by=0.01)){
    Ho<-HoltWinters(training.ts,alpha=i,beta=j,gamma=F)
    error<-c(training.ts)-c(Ho$fitted[,1])
    sse<-Ho$SSE
    mse<-sse/length(training.ts)
    mape<-mean(abs(error/training.ts*100))
    rmse<-sqrt(mse)
    akurasi<-cbind("Alpha"=i,"Beta"=j,"SSE"=sse,
                   "MSE"=mse,"RMSE"=rmse,"MAPE"=mape)
    out<-rbind(out,akurasi)
  }
}
## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length

## Warning in c(training.ts) - c(Ho$fitted[, 1]): longer object length is not a
## multiple of shorter object length
out[which.min(out$MAPE),]
##      Alpha Beta     SSE      MSE     RMSE     MAPE
## 5050  0.52 0.01 5626267 61155.07 247.2955 1.324644

Forecasting

ramalandes1<- forecast(des1, h=10)
ramalandes1
##          Point Forecast    Lo 80    Hi 80    Lo 95    Hi 95
## Sep 2020       10040.14 9628.400 10451.89 9410.436 10669.85
## Oct 2020       10069.77 9646.330 10493.20 9422.177 10717.35
## Nov 2020       10099.39 9660.538 10538.24 9428.225 10770.55
## Dec 2020       10129.01 9670.808 10587.21 9428.251 10829.77
## Jan 2021       10158.63 9677.051 10640.21 9422.118 10895.15
## Feb 2021       10188.26 9679.290 10697.22 9409.860 10966.65
## Mar 2021       10217.88 9677.630 10758.13 9391.640 11044.12
## Apr 2021       10247.50 9672.237 10822.76 9367.711 11127.29
## May 2021       10277.12 9663.307 10890.94 9338.373 11215.87
## Jun 2021       10306.74 9651.051 10962.44 9303.947 11309.54
ramalandesopt<- forecast(desopt, h=10)
ramalandesopt
##          Point Forecast    Lo 80    Hi 80    Lo 95    Hi 95
## Sep 2020       9973.264 9725.983 10220.54 9595.081 10351.45
## Oct 2020       9983.878 9630.990 10336.76 9444.183 10523.57
## Nov 2020       9994.491 9558.389 10430.59 9327.530 10661.45
## Dec 2020      10005.105 9497.015 10513.19 9228.049 10782.16
## Jan 2021      10015.719 9442.588 10588.85 9139.190 10892.25
## Feb 2021      10026.333 9392.931 10659.73 9057.628 10995.04
## Mar 2021      10036.946 9346.765 10727.13 8981.404 11092.49
## Apr 2021      10047.560 9303.263 10791.86 8909.256 11185.86
## May 2021      10058.174 9261.857 10854.49 8840.312 11276.04
## Jun 2021      10068.788 9222.137 10915.44 8773.947 11363.63

Akurasi data training

SSE

sse.des.train <- des1$SSE
sse.des.train
## [1] 9207195
sseopt.des.train <- desopt$SSE
sseopt.des.train
## [1] 3355077

MSE

mse.des.train <- sse1.train/length(training.ts)
mse.des.train
## [1] 98322.36
mseopt.des.train <- sseopt.train/length(training.ts)
mseopt.des.train
## [1] 35685.89

RMSE

rmse.des.train <- sqrt(mse.des.train)
rmse.des.train
## [1] 313.564
rmseopt.des.train <- sqrt(mseopt.des.train)
rmseopt.des.train
## [1] 188.9071
akurasi.des1 <- matrix(c(sse.des.train,mse.des.train,rmse.des.train,sseopt.des.train,mseopt.des.train,rmseopt.des.train), nrow=3, ncol=2)
row.names(akurasi.des1)<- c("SSE", "MSE", "RMSE")
colnames(akurasi.des1) <- c("alpha=0.2, beta=0.2", "alpha=1, beta=0.0181")
akurasi.des1
##      alpha=0.2, beta=0.2 alpha=1, beta=0.0181
## SSE          9207194.764         3355076.8907
## MSE            98322.364           35685.8927
## RMSE             313.564             188.9071

Metode DES memiliki dua parameter pemulusan yaitu alpha dan beta yang bernilai antara 0 dan 1. Pada awal pemulusan, digunakan alpha dan beta sebesar 0.2. Lalu dilakukan pemulusan dengan alpha dan beta yang optimal secara otomatis dengan program, didapatkan alpha sebesar 1 dan beta sebesar 0.0181. Parameter pemulusan yang dipilih adalah alpha = 1 dan beta = 0.0181 karena memiliki error yang lebih kecil.

Perbandingan Akurasi Test Single Exponential dan Double Exponential

selisihses<-ramalanopt$mean-testing.ts
selisihses
##          Jan     Feb     Mar     Apr     May     Jun Jul Aug     Sep     Oct
## 2020                                                         335.568 425.488
## 2021 507.088 513.178 423.358 290.108 138.418 135.768                        
##          Nov     Dec
## 2020 561.038 463.288
## 2021
SSEtestingses<-sum(selisihses^2)
str(testing.ts)
##  Time-Series [1:23, 1] from 2020 to 2022: 9871 9813 9714 9788 9780 ...
##  - attr(*, "dimnames")=List of 2
##   ..$ : NULL
##   ..$ : chr "Premium"
selisihdes<-ramalandesopt$mean-testing.ts
selisihdes
##           Jan      Feb      Mar      Apr      May      Jun Jul Aug      Sep
## 2020                                                               346.1838
## 2021 560.1588 576.8625 497.6563 375.0201 233.9438 241.9076                 
##           Oct      Nov      Dec
## 2020 446.7175 592.8813 505.7450
## 2021
SSEtestingdes<-sum(selisihdes^2)

akurasi <- matrix(c(SSEtestingses, SSEtestingdes), nrow=1, ncol=2)
row.names(akurasi)<- "SSE"
colnames(akurasi) <- c("SES", "DES")
akurasi
##         SES     DES
## SSE 1644522 2074785

Dibandingkan degan metode moving average, metode exponential memiliki error yang jauh lebih kecil, hal ini menandakan bahwa adanya perbedaan pengaruh harga beras antar periode sehingga metode exponential lebih cocok digunakan.

Pemulusan Winter

Import data

winter <- data
str(winter)
## tibble [115 × 7] (S3: tbl_df/tbl/data.frame)
##  $ Tahun        : num [1:115] 2013 2013 2013 2013 2013 ...
##  $ Bulan        : chr [1:115] "Januari" "Februari" "Maret" "April" ...
##  $ Premium      : num [1:115] 7798 7773 7576 7421 7545 ...
##  $ Medium       : chr [1:115] "7697.37" "7645.05" "7503.27" "7290.96" ...
##  $ Luar Kualitas: chr [1:115] "7545.32" "7328.44" "7033.14" "6870.91" ...
##  $ IHK          : num [1:115] 1.03 1.79 2.43 2.32 2.3 3.35 6.75 7.94 7.57 7.66 ...
##  $ Harga Gabah  : chr [1:115] "4333.19" "4265.58" "3783.15" "3669.04" ...

Membagi data menjadi training dan testing

training<-winter[1:92,3]
testing<-winter[93:115,3]

Membentuk objek time series

winter.ts<-ts(winter$Premium,start = 2013, frequency = 12,)
training.ts<-ts(training,start = 2013, frequency = 12)
testing.ts<-ts(testing, start = 2020, frequency = 12)

Membuat plot time series

plot(winter.ts, col="red")
points(winter.ts)

plot(training.ts, col="blue")
points(training.ts)

Winter Aditif

Pemulusan

aditif <- HoltWinters(training.ts, seasonal = "additive")
aditif 
## Holt-Winters exponential smoothing with trend and additive seasonal component.
## 
## Call:
## HoltWinters(x = training.ts, seasonal = "additive")
## 
## Smoothing parameters:
##  alpha: 0.9397762
##  beta : 0
##  gamma: 1
## 
## Coefficients:
##            [,1]
## a   9969.379367
## b     45.393039
## s1   -62.421775
## s2   -44.637338
## s3     5.251943
## s4    50.566182
## s5   242.309433
## s6   239.634262
## s7    72.827370
## s8  -229.467762
## s9  -234.522569
## s10 -121.839909
## s11    2.169304
## s12   -6.729367

Forecasting

ramalan1 <- forecast(aditif, h=23)
ramalan1
##          Point Forecast     Lo 80    Hi 80    Lo 95    Hi 95
## Sep 2020       9952.351  9747.716 10156.99 9639.388 10265.31
## Oct 2020      10015.528  9734.710 10296.35 9586.053 10445.00
## Nov 2020      10110.810  9770.454 10451.17 9590.280 10631.34
## Dec 2020      10201.518  9810.588 10592.45 9603.642 10799.39
## Jan 2021      10438.654 10002.983 10874.33 9772.352 11104.96
## Feb 2021      10481.372 10005.144 10957.60 9753.044 11209.70
## Mar 2021      10359.958  9846.366 10873.55 9574.487 11145.43
## Apr 2021      10103.056  9554.640 10651.47 9264.326 10941.79
## May 2021      10143.394  9562.237 10724.55 9254.591 11032.20
## Jun 2021      10301.470  9689.320 10913.62 9365.268 11237.67
## Jul 2021      10470.872  9829.225 11112.52 9489.558 11452.19
## Aug 2021      10507.366  9837.520 11177.21 9482.925 11531.81
## Sep 2021      10497.067  9796.660 11197.47 9425.887 11568.25
## Oct 2021      10560.245  9833.916 11286.57 9449.421 11671.07
## Nov 2021      10655.527  9904.170 11406.88 9506.426 11804.63
## Dec 2021      10746.234  9970.657 11521.81 9560.091 11932.38
## Jan 2022      10983.370 10184.306 11782.43 9761.307 12205.43
## Feb 2022      11026.088 10204.208 11847.97 9769.131 12283.05
## Mar 2022      10904.674 10060.594 11748.75 9613.765 12195.58
## Apr 2022      10647.772  9782.062 11513.48 9323.782 11971.76
## May 2022      10688.111  9801.297 11574.92 9331.846 12044.37
## Jun 2022      10846.186  9938.760 11753.61 9458.398 12233.97
## Jul 2022      11015.589 10088.008 11943.17 9596.977 12434.20

Akurasi data training

SSE

sse1.train <- aditif$SSE
sse1.train
## [1] 2040258

Winter Multiplikatif

Pemulusan

multi <- HoltWinters(training.ts,seasonal = "multiplicative")
multi
## Holt-Winters exponential smoothing with trend and multiplicative seasonal component.
## 
## Call:
## HoltWinters(x = training.ts, seasonal = "multiplicative")
## 
## Smoothing parameters:
##  alpha: 0.9164345
##  beta : 0.004269409
##  gamma: 1
## 
## Coefficients:
##             [,1]
## a   9972.8852073
## b     39.8546220
## s1     0.9930187
## s2     0.9941415
## s3     1.0002668
## s4     1.0066209
## s5     1.0295664
## s6     1.0294380
## s7     1.0099301
## s8     0.9742842
## s9     0.9706645
## s10    0.9834512
## s11    0.9975120
## s12    0.9989737

Forecasting

ramalan2 <- forecast(multi, h=23)
ramalan2
##          Point Forecast     Lo 80    Hi 80    Lo 95    Hi 95
## Sep 2020       9942.838  9734.778 10150.90 9624.638 10261.04
## Oct 2020       9993.701  9710.789 10276.61 9561.025 10426.38
## Nov 2020      10095.142  9751.731 10438.55 9569.940 10620.34
## Dec 2020      10199.389  9803.586 10595.19 9594.061 10804.72
## Jan 2021      10472.912 10024.302 10921.52 9786.821 11159.00
## Feb 2021      10512.634 10023.546 11001.72 9764.638 11260.63
## Mar 2021      10353.670  9835.273 10872.07 9560.850 11146.49
## Apr 2021      10027.063  9489.480 10564.65 9204.900 10849.22
## May 2021      10028.495  9457.864 10599.13 9155.790 10901.20
## Jun 2021      10199.797  9588.912 10810.68 9265.530 11134.06
## Jul 2021      10385.383  9734.809 11035.96 9390.416 11380.35
## Aug 2021      10440.415  9791.523 11089.31 9448.020 11432.81
## Sep 2021      10417.755  9732.128 11103.38 9369.180 11466.33
## Oct 2021      10469.155  9754.119 11184.19 9375.602 11562.71
## Nov 2021      10573.525  9826.558 11320.49 9431.138 11715.91
## Dec 2021      10680.811  9902.470 11459.15 9490.441 11871.18
## Jan 2022      10965.308 10143.983 11786.63 9709.200 12221.42
## Feb 2022      11004.969 10158.670 11851.27 9710.666 12299.27
## Mar 2022      10836.675  9981.224 11692.13 9528.376 12144.97
## Apr 2022      10493.019  9642.204 11343.83 9191.809 11794.23
## May 2022      10492.721  9620.501 11364.94 9158.776 11826.67
## Jun 2022      10670.138  9762.831 11577.44 9282.532 12057.74
## Jul 2022      10862.449  9919.225 11805.67 9419.912 12304.99

Akurasi data training

SSE

sse2.train <- multi$SSE
sse2.train
## [1] 2106918

Akurasi data testing

selisih1<-as.numeric(ramalan1$mean)-as.numeric(testing.ts)
selisih1
##  [1]   81.23063  202.62811  396.31043  413.65770  658.46399  709.27186
##  [7]  752.98801  553.29592  516.31415  764.30985 1069.26210 1008.00647
## [13] 1041.50710 1110.77458 1116.23690 1073.69417 1159.14046 1199.20833
## [19] 1118.04448 1071.02239 1175.48062 1348.78632 1387.01857
SSEtesting1<-sum(selisih1^2)

selisih2<-as.numeric(ramalan2$mean)-as.numeric(testing.ts)
selisih2
##  [1]   71.71791  180.80142  380.64213  411.52909  692.72212  740.53418
##  [7]  746.70011  477.30260  401.41512  662.63677  983.77328  941.05463
## [13]  962.19453 1019.68502 1034.23521 1008.27105 1141.07786 1178.08853
## [19] 1050.04472  916.26935  980.09073 1172.73768 1233.87886
SSEtesting2<-sum(selisih2^2)

akurasi <- matrix(c(SSEtesting1, SSEtesting2), nrow=1, ncol=2)
row.names(akurasi)<- "SSE"
colnames(akurasi) <- c("Aditif", "Multiplikatif")
akurasi
##       Aditif Multiplikatif
## SSE 20216729      17161598

Kesimpulan

  1. Metode Exponential lebih cocok digunakan dibandingkan dengan metode moving average. Adanya perbedaan pengaruh harga beras antar periode membuat metode exponential lebih cocok digunakan.
  2. Dalam Metode Eksponensial, metode Double Exponential Smoothing lebih cocok digunakan dibandingkan Single Exponential Smoothing.
  3. Pada metode Winter, multiplikative lebih cocok digunakan dibandingkan additive.

Kestasioneran Data

Library

library("tseries")
library("forecast")
library("TTR")
library("TSA")
library("graphics")
library("astsa")
## 
## Attaching package: 'astsa'
## The following object is masked from 'package:forecast':
## 
##     gas
library("car")
## Loading required package: carData
## 
## Attaching package: 'car'
## The following object is masked from 'package:dplyr':
## 
##     recode

Import Data

    data.premium <- ts(data$Premium, start = 2013, frequency = 12)
    ts.plot(data.premium, main = "Harga Beras Premium Tahun 2013 - 2022", ylab = "Harga", lwd = 1.5)
    points(data.premium)
    legend("topleft", c("Premium"), cex = 0.7,
           col = c("black", "red", "blue"), lty = 1)

Evaluasi periode musiman

#Plot tahunan
library(forecast)
seasonplot(data.premium,12,main="Xt", ylab="Xt",year.labels = TRUE, col=rainbow(18))

monthplot(data.premium,ylab="Xt")

boxplot(data$Premium~data$Bulan,ylab="Xt",xlab="Bulan")

Berdasarkan Boxplot terlihat bahwa ragam data dari tahun ke tahun cenderung tidak homogen, sehingga untuk memastikan, selanjutnya dilakukan pengujian dengan fligner test.

Uji Homogenitas

library(car)
fligner.test(`Premium` ~ Tahun, data=data)
## 
##  Fligner-Killeen test of homogeneity of variances
## 
## data:  Premium by Tahun
## Fligner-Killeen:med chi-squared = 17.725, df = 9, p-value = 0.0385

Berdasarkan hasil uji homogenitas di atas, diperoleh nilai p-value=0.0385 < 0.05 sehingga dapat disimpulkan bahwa data harga beras premium tidak homogen.

Oleh karena itu, berdasarkan hasil plot data dan pengujian homogenitas dapat disimpulkan bahwa data harga beras premium tidak stasioner dalam ragam dan rataan.

Plot ACF dan Proses Differencing

ACF Zt

acf0.prem<-acf(train.ts,main="ACF",lag.max=48,xaxt="n")
axis(1, at=0:48/12, labels=0:48)

Berdasarkan plot ACF di atas terlihat bahwa …

ACF Musiman

acf0.prem$lag <- acf0.prem$lag * 12
acf0.prem.1 <- as.data.frame(cbind(acf0.prem$acf,acf0.prem$lag))
acf0.prem.2 <- acf0.prem.1[which(acf0.prem.1$V2%%12==0),]
barplot(height = acf0.prem.2$V1, names.arg=acf0.prem.2$V2, ylab="ACF", xlab="Lag")

Berdasarkan plot ACF di atas terlihat bahwa…

Differencing

Daftar Pustaka

Fani E, Widjajati FA, Soehardjoepri. 2017. Perbandingan Metode Winter Eksponensial Smoothing dan Metode Event Based untuk Menentukan Penjualan Produk Terbaik di Perusahaan X. Jurnal Sains dan Seni ITS. 6(1):2337-3529.

H. R. Naufal and R Adrean, “R. naufal Hayâ and R. Adrean, ‘Sistem Informasi Inventory Berdasarkan Prediksi Data Penjualan Barang Menggunakan Metode Single Moving Average Pada CV. Agung Youanda,’ ProTekInfo (Pengembangan Ris. dan Obs.Tek. Inform., vol. 4, pp. 29