Skip to content

Commit

Permalink
Update 05-ch5.Rmd
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocalak authored Oct 18, 2023
1 parent 58c03d2 commit 3ab46f8
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions 05-ch5.Rmd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Hypothesis Tests and Confidence Intervals in the Simple Linear Regression Model {#htaciitslrm}
# Hypothesis Tests and Confidence Intervals in SLR Model {#htaciitslrm}

This chapter continues our treatment of the simple linear regression model. The following subsections discuss how we may use our knowledge about the sampling distribution of the OLS estimator in order to make statements regarding its uncertainty.

Expand Down Expand Up @@ -1312,17 +1312,17 @@ if (my_output=="html") {
In the simple regression model, the covariance matrix of the coefficient estimators is denoted
\\begin{equation}
\\text{Var}
$$\\text{Var}
\\begin{pmatrix}
\\hat\\beta_0 \\
\\hat\\beta_1
\\end{pmatrix} =
\\begin{pmatrix}
\\text{Var}(\\hat\\beta_0) & \\text{Cov}(\\hat\\beta_0,\\hat\\beta_1) \\\\
\\text{Cov}(\\hat\\beta_0,\\hat\\beta_1) & \\text{Var}(\\hat\\beta_1)
\\end{pmatrix}
\\end{equation}
\\end{pmatrix}$$
The function <tt>vcovHC</tt> can be used to obtain estimates of this matrix for a model object of interest.
Expand Down Expand Up @@ -1448,4 +1448,3 @@ The function <tt>DGP_OLS()</tt> and the estimated variance <tt>est_var_OLS</tt>
</div>')}
```

0 comments on commit 3ab46f8

Please sign in to comment.