ISYE6501 WEEK 4 HOMEWORK solution

$24.99

Original Work ?
Category: Tags: , , , , , , You will Instantly receive a download link for .ZIP solution file upon Payment

Description

5/5 - (5 votes)

Question 7.1
Describe a situation or problem from your job, everyday life, current events, etc., for which exponential
smoothing would be appropriate. What data would you need? Would you expect the value of  (the
first smoothing parameter) to be closer to 0 or 1, and why?
Question 7.2
Using the 20 years of daily high temperature data for Atlanta (July through October) from Question 6.2,
build and use an exponential smoothing model to help make a judgment of whether the unofficial end
of summer has gotten later over the 20 years. (Part of the point of this assignment is for you to think
about how you might use exponential smoothing to answer this question. Feel free to combine it with
other models if you’d like to. There’s certainly more than one reasonable approach.)
Note: in R, you can use either HoltWinters (simpler to use) or the smooth package’s es function
(harder to use, but more general). If you use es, the Holt-Winters model uses model=”AAM” in the
function call (the first and second constants are used “A”dditively, and the third (seasonality) is used
“M”ultiplicatively; the documentation doesn’t make that clear).