Displaying 3 results from an estimated 3 matches for "percent_used".
2002 Mar 04
4
script to rysnc to spare hard drive
Im brand new to rsync and i been doing alot of reading about it and it looks like the tool I have long been wanting.
Bascially i got 1 server, 2 hard drives. partions are
/
/boot
/home
/usr
/var
/backup (2nd drive)
Bascially what i am looking at doing is mirroring the first drive to the 2nd drive, and once that intial one is moved over, have a
cron run nightly (or when specified) that will
2018 Jun 01
0
Issue with batch forecasting of Time series data
...put = matrix(0,nrow=(length(Products)*(1)),ncol=7)
colnames(output) =
c(
"Product",
"DATE",
"Forecast",
"Lo_80",
"Hi_80 ",
"Lo_95",
"Hi_95"
)
for (i in Products) {
train = head(input_data["PERCENT_USED"][input_data["Server.Name"]==i] , 90)
train = ts(train[1:(length(train))])
fc1 = auto.arima(train)
pred1 = forecast( fc1)
fit1_acry = accuracy(pred1)
fc2 = ets(train)
pred2 = forecast( fc2 )
fit2_acry = accuracy(pred2 )
MAPE = data.frame ( fit1_MAPE = fit1_ac...
2018 May 27
0
Help required in Batch Forecasting
...put = matrix(0,nrow=(length(Products)*(5)),ncol=7)
colnames(output) =
c(
"Product",
"DATE",
"Forecast",
"Lo_80",
"Hi_80 ",
"Lo_95",
"Hi_95"
)
for (i in Products) {
train = head(input_data["PERCENT_USED"][input_data["Server.Name"]==i] , 90)
train = ts(train[1:(length(train))])
fc1 = auto.arima(train)
pred1 = forecast( fc1)
fit1_acry = accuracy(pred1)
fc2 = ets(train)
pred2 = forecast( fc2 )
fit2_acry = accuracy(pred2 )
MAPE = data.frame ( fit1_MAPE = fit1_ac...