Year Sales Trend
2009 121 1
2010 187 2
2011 165 3
2012 134 4
2013 155 5
2014 167 6
2015 200 7
2016 206 8
2017 221 9
2018 231 10
We want to forecast sales for 2019 and 2020 using either a simple trend model or a quadratic trend model. Use a within sample forecasting technique to determine the best model using the RMSE measure discussed in lecture. Once this model has been determined, provide actual forecasts for 2019 and 2020.
Since RMSE of quadratic trend model is less than simple linear trend model so quadratic model is better and using this model the forecast for year 2019 and 2020 are given as
using estimated quadratic model, y^=146.18-1.17*t+1.01*t^2
for year 2019, t=11, and y^=146.18-1.17*11+1.01*11*11=255.52
for year 2020, t=12, and y^=146.18-1.17*12+1.01*12*12=277.58
the simple linear trend the model is given as y^=123.93+9.96*t
RMSE=19.42
regression analysis
| Observation | y | y^ | y-y^=Residuals(e) | e2 |
| 1 | 121 | 133.89 | -12.89 | 166.18 |
| 2 | 187 | 143.85 | 43.15 | 1862.05 |
| 3 | 165 | 153.81 | 11.19 | 125.30 |
| 4 | 134 | 163.76 | -29.76 | 885.87 |
| 5 | 155 | 173.72 | -18.72 | 350.48 |
| 6 | 167 | 183.68 | -16.68 | 278.18 |
| 7 | 200 | 193.64 | 6.36 | 40.50 |
| 8 | 206 | 203.59 | 2.41 | 5.79 |
| 9 | 221 | 213.55 | 7.45 | 55.48 |
| 10 | 231 | 223.51 | 7.49 | 56.11 |
| sum= | 1556 | 1563.490909 | -7.490909091 | 3769.838 |
| RMSE=sqrt(e2/n)= | 19.42 |
| ANOVA | ||||||
| df | SS | MS | F | Significance F | ||
| Regression | 1 | 8180.148 | 8180.148 | 17.10455 | 0.003272 | |
| Residual | 8 | 3825.952 | 478.2439 | |||
| Total | 9 | 12006.1 | ||||
| Coefficients | Standard Error | t Stat | P-value | Lower 95% | Upper 95% | |
| Intercept | 123.9333 | 14.93923 | 8.295833 | 3.36E-05 | 89.48341 | 158.3833 |
| t | 9.957576 | 2.407674 | 4.135765 | 0.003272 | 4.405469 | 15.50968 |
using estimated quadratic model, y^=146.18-1.17*t+1.01*t^2
RMSE=18.07
| Observation | y | y^ | y-y^=Residuals(e) | e2 |
| 1 | 121 | 146.03 | -25.03 | 626.36 |
| 2 | 187 | 147.89 | 39.11 | 1529.28 |
| 3 | 165 | 151.78 | 13.22 | 174.68 |
| 4 | 134 | 157.70 | -23.70 | 561.47 |
| 5 | 155 | 165.63 | -10.63 | 113.00 |
| 6 | 167 | 175.59 | -8.59 | 73.75 |
| 7 | 200 | 187.57 | 12.43 | 154.55 |
| 8 | 206 | 201.57 | 4.43 | 19.61 |
| 9 | 221 | 217.60 | 3.40 | 11.58 |
| 10 | 231 | 235.65 | -4.65 | 21.58 |
| sum= | 1556 | 1551.35 | 4.65 | 3264.303 |
| RMSE=sqrt(e2/n)= | 18.07 |
| ANOVA | ||||||
| df | SS | MS | F | Significance F | ||
| Regression | 2 | 8720.217 | 4360.108 | 9.288449 | 0.010724 | |
| Residual | 7 | 3285.883 | 469.4119 | |||
| Total | 9 | 12006.1 | ||||
| Coefficients | Standard Error | t Stat | P-value | Lower 95% | Upper 95% | |
| Intercept | 146.1833 | 25.48241 | 5.736637 | 0.000708 | 85.92701 | 206.4397 |
| t | -1.16742 | 10.64253 | -0.10969 | 0.91573 | -26.333 | 23.99816 |
| t^2 | 1.011364 | 0.942888 | 1.072623 | 0.31902 | -1.21821 | 3.240939 |
Suppose we have the following annual sales data for an automobile dealership: Year Sales &n
please answer with clear work using decomposition including
season factor
The next page provides the monthly sales data for Joe's Stone Crab. We have been hired to develop a forecasting model that will predict future sales for 2018 using the time-series seasonal adjustment method. Assume that data is only available through the end of 2017 You are also to prepare a 1-2 page report within a Word file that will explain to the owner (Mr. Joe) what is happening with...
Please determine the IDENTITY of the unknown
compound and explain how each peak / data point from the following
instruments led to that identification. What does the gcms
indicate. Thank you very much! (The GCMS data is just a long set of
numbers which is why the question appears so long).
IR of unknown:
NMR unknown Proton Graphs (first is overall graph,
others that follow are zoomed in sections):
NMR unknown Carbon Graphs (first is overall graph,
others that follow...
We are interested in the relationship between the compensation of Chief Executive Officers (CEO) of firms and the return on equity of their respective firm, using the dataset below. The variable salary shows the annual salary of a CEO in thousands of dollars, so that y = 150 indicates a salary of $150,000. Similarly, the variable ROE represents the average return on equity (ROE)for the CEO’s firm for the previous three years. A ROE of 20 indicates an average return...
I have written my code for an employee management system that stores Employee class objects into a vector, I am getting no errors until I try and compile, I am getting the error: C2679 binary '==': no operator found which takes a right-hand operand of type 'const std::string' (or there is no acceptable conversion). But I am not sure why any help would be great, Thank you! 1 2 3 4 5 6 7 8 9 10 11 12 13...
so i have my c++ code and ive been working on this for hours
but i cant get it to run im not allowed to use arrays. im not sure
how to fix it thank you for the help
our job is to write a menu driven program that can convert to display Morse Code ere is the menu the program should display Menu Alphabet Initials N-Numbers - Punctuations S = User Sentence Q- Quit Enter command the user chooses...
HELP needed urgently....Data and question is attacted below.....
Thank you in advance
there is no data link fir this data it’s all in photos.... thank
you
i
have already posted the question
We were unable to transcribe this imageNo. 2 3 4 5 6 7 8 Working Sector Public Own Public Public Private Public Private Private Own Own Private Public Public Public Private 9 10 11 12 13 Public IS 16 17 18 19 20 21 22 23 24 25...
83 84 85 69.99 39.19 41.18 23.36 8055 8056 8057 8058 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 10/11/23 10/11/23 10/11/23 10/11/23 10/11/23 10/11/23 10/11/23 10/11/23 10/11/23 10/11/23 10/11/23 10/11/23 10/11/23 10/11/23 10/11/23 10/12/23 10/12/23 10/12/23 10/12/23 10/12/23 10/12/23 10/12/23 10/12/23 10/12/23 10/12/23 10/13/23 10/13/23 10/13/23 10/13/23 10/13/23 10/14/23 10/14/23 10/14/23 10/14/23 10/14/23 10/14/23 10/14/23 10/14/23 10/14/23 10/14/23 10/14/23 10/11/22 8059 8059...