subject

M1<- lm(yºx, data=df2) summary (m1)
Call:
lm (formula = y "x, data = df2)
Residuals:
Min 1Q Median
-65.10 -18.51 -2.10 3Q 17.42 Max 68.55
Coefficients:
Estimate Std. Error t value Pr(>It)
(Intercept) 52.737 1.874 28.14 <2e-16 ***
x 22.923 1.787 12.82 <2e-16 ***
Signif. codes: O *** 0.001 ** 0.01 * 0.05. 0.1 1
Residual standard error: 26.5 on 198 degrees of freedom Multiple R-squared: 0.4537, Adjusted R-squared: 0.451 F-statistic: 164.5 on 1 and 198 DF, p-value: < 2.2e-16
acf (m1$residual)
pacf (m1$residual)
Box. test(m1$residual, lag=10, type="Ljung")
Box-Ljung test
data: m1$residual
X-squared = 177.09, df = 10, p-value < 2.2e-16
m2=arima (y, order = c(1,0,0), xreg = x)
m2
Call:
arima (x = y, order = c(1, 0, 0), xreg = x)
Coefficients:
ar1 intercept x
0.7084 52.6141 24.4899
s. e 0.0496 4.4589 1.0576
sigma 2 estimated as 346.2: log likelihood = -868.84, aic = 1745.68
Box. test(m2$residual, lag=10, type="Ljung")
Box-Ljung test
data: m2$residual
X-squared = 7.534, df = 10, p-value = 0.6743
See the outputs on page 8 after we fit two models for simulated time series data Yt against Xt:
A) Write down the fitted linear regression. What is the R2 of the linear regression? Is the fitted model adequate? Why?
B) After reviewing the ACF and PACF plots. The researcher decided to fit the model 2 with time series errors for this simulated data. What is the fitted model? Write down the fitted model. What is the residual standard deviation of the model? (c) Based on the available output, is model 2 a good fit for the data? Why?

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 22:30
One of your customers wants you to build a personal server that he can use in his home. one of his concerns is making sure he has at least one backup of their data stored on the server in the event that a disk fails. you have decided to back up his data using raid. since this server is for personal use only, the customer wants to keep costs down. therefore, he would like to keep the number of drives to a minimum. which of the following raid systems would best meet the customer's specifications? a. raid 0 b. raid 1 c. raid 5 d. raid 10
Answers: 3
question
Computers and Technology, 25.06.2019 08:10
What is the relation between information and data?
Answers: 3
question
Computers and Technology, 25.06.2019 09:30
Which of the following is a reason to include the people who will be using the new technology in conversations about technology upgrades for a business? a. the users would likely know if an upgrade would be necessary or even useful. b. the users would know more about the software than people in the it department. c. the users will be paying for the upgrades with their own money. d. the users will assume the upgrade will cause a drop in productivity.
Answers: 1
question
Computers and Technology, 25.06.2019 13:00
What are the different components of the cloud architecture?
Answers: 1
You know the right answer?
M1<- lm(yºx, data=df2) summary (m1)
Call:
lm (formula = y "x, data = df2)
R...
Questions