簡體   English   中英

在自動預測中應用循環

[英]Apply loop in automated forecast

我試圖以長格式預測data.frame中的各個變量。 我陷入了循環[應用]部分。 問題是:如何用申請替換手動預測?

library(forecast)
library(data.table)

# get time series
www = "http://staff.elena.aut.ac.nz/Paul-Cowpertwait/ts/cbe.dat"
cbe = read.table(www, header = T)

# in this case, there is a data.frame in long format to start with
df = data.table(cbe[, 2:3])
df[, year := 1958:1990]
dfm = melt(df, id.var = "year", variable.name = "indicator", variable.factor = F) # will give warning because beer = num and others are int
dfm[, site := "A"]
dfm2= copy(dfm) # make duplicate to simulate other site
dfm2[, site := "B"]
dfm = rbind(dfm, dfm2)


# function to make time series & forecast
f.forecast = function(df, mysite, myindicator, forecast.length = 6, frequency  = freq) {

  # get site and indicator
  x = df[site == mysite & indicator == myindicator,]

  # convert to time series
  start.date = min(x$year)
  myts = ts(x$value, frequency = freq, start = start.date)

  # forecast
  myfc = forecast(myts, h = forecast.length, fan = F, robust = T)
  plot(myfc, main = paste(mysite, myindicator, sep = " / "))
  grid()

  return(myfc)
}

# the manual solution
par(mfrow = c(2,1))
f1 = f.forecast(dfm, mysite = "A", myindicator = "beer", forecast.length = 6, freq = 12)
f2 = f.forecast(dfm, mysite = "A", myindicator = "elec", forecast.length = 6, freq = 12)

# how to loop? [in the actual data set there are many variables per site]
par(mfrow = c(2,1))
myindicators = unique(dfm$indicator)
sapply(myindicator, f.forecast(dfm, "A", myindicator = myindicators, forecast.length = 6, freq = 12)) # does not work

我建議使用split並刪除f.forecast的第二個和第三個參數。 您直接傳遞要預測的data.frame的子集。 例如:

f.forecast = function(x, forecast.length = 6, frequency  = freq) {
  #comment the first line
  #x = df[site == mysite & indicator == myindicator,]
  #here goes the rest of the body
  #modify the plot line
  plot(myfc, main = paste(x$site[1], x$indicator[1], sep = " / "))
} 

現在,您將整個df分割並為每個子集調用f.forecast

dflist<-split(df,df[,c("site","indicator")],drop=TRUE)
lapply(dflist,f.forecast)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM