Skip to content

Commit

Permalink
remove 'rarely used' aspect
Browse files Browse the repository at this point in the history
  • Loading branch information
mlu-explain committed Sep 20, 2022
1 parent 93e595e commit 31e0288
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/linear-regression/src/Components/ClosedForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@
<section>
<p class="body-text">
<span class="bold">A Closed-Form Solution</span><br />
We'd be remiss not to mention the Normal Equation, a widely taught (but rarely-used)
method for obtaining estimates for our linear regression coefficients. The Normal
Equation is a closed-form solution that allows us to estimate our coefficients
directly by minimizing the <i>residual sum of squares</i> (RSS) of our data:
We'd be remiss not to mention the Normal Equation, a widely taught method for
obtaining estimates for our linear regression coefficients. The Normal Equation
is a closed-form solution that allows us to estimate our coefficients directly
by minimizing the <i>residual sum of squares</i> (RSS) of our data:
{@html katexify(
`\\begin{aligned} RSS = \\sum^{n}_{i=1}(y_i - \\hat{y_i})^2 \\end{aligned}`,
true
Expand Down

0 comments on commit 31e0288

Please sign in to comment.