correcting typos

This commit is contained in:
Morten Hjorth-Jensen
2024-09-03 05:58:08 +02:00
parent b01d1a6706
commit 48d4efe695
56 changed files with 477 additions and 465 deletions
+4 -4
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
@@ -265,7 +265,7 @@ MathJax.Hub.Config({
<!-- ------------------- main content ---------------------- -->
<div class="jumbotron">
<center>
<h1>Week 36: Linear Rgeression and Statistical interpretations</h1>
<h1>Week 36: Linear Regression and Statistical interpretations</h1>
</center> <!-- document title -->
<!-- author(s): Morten Hjorth-Jensen -->
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+6 -4
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
@@ -307,6 +307,8 @@ penalization of the parameters since their magnitude&#160;depends on the
scale of their corresponding&#160;predictor.
</p>
<p>The <b>Scikit-Learn</b> site <a href="https://scikit-learn.org/stable/auto_examples/preprocessing/plot_all_scaling.html#plot-all-scaling-standard-scaler-section" target="_self"><tt>https://scikit-learn.org/stable/auto_examples/preprocessing/plot_all_scaling.html#plot-all-scaling-standard-scaler-section</tt></a> has a good discussion of different ways of preprocessing data.</p>
<p>Suppose as an example that you
you have an input&#160;variable given by the heights of different persons.
Human height might be measured in inches or meters or
@@ -541,7 +543,7 @@ beta <span style="color: #666666">=</span> fit_beta(X <span style="color: #66666
intercept <span style="color: #666666">=</span> np<span style="color: #666666">.</span>mean(y_offset <span style="color: #666666">-</span> X_offset <span style="color: #666666">@</span> beta)
<span style="color: #008000">print</span>(<span style="color: #BA2121">f&quot;Manual intercept: </span><span style="color: #BB6688; font-weight: bold">{</span>intercept<span style="color: #BB6688; font-weight: bold">}</span><span style="color: #BA2121">&quot;</span>)
<span style="color: #008000">print</span>(<span style="color: #BA2121">f&quot;Fitted beta (wiothout intercept): </span><span style="color: #BB6688; font-weight: bold">{</span>beta<span style="color: #BB6688; font-weight: bold">}</span><span style="color: #BA2121">&quot;</span>)
<span style="color: #008000">print</span>(<span style="color: #BA2121">f&quot;Fitted beta (without intercept): </span><span style="color: #BB6688; font-weight: bold">{</span>beta<span style="color: #BB6688; font-weight: bold">}</span><span style="color: #BA2121">&quot;</span>)
<span style="color: #008000">print</span>(<span style="color: #BA2121">f&quot;Sklearn intercept: </span><span style="color: #BB6688; font-weight: bold">{</span>skl<span style="color: #666666">.</span>intercept_<span style="color: #BB6688; font-weight: bold">}</span><span style="color: #BA2121">&quot;</span>)
<span style="color: #008000">print</span>(<span style="color: #BA2121">f&quot;Sklearn fitted beta (without intercept): </span><span style="color: #BB6688; font-weight: bold">{</span>skl<span style="color: #666666">.</span>coef_<span style="color: #BB6688; font-weight: bold">}</span><span style="color: #BA2121">&quot;</span>)
ypredictOwn <span style="color: #666666">=</span> X <span style="color: #666666">@</span> beta
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+3 -3
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
+4 -4
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=d
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- Bootstrap style: bootstrap -->
<!-- doconce format html week36.do.txt --html_style=bootstrap --pygments_html_style=default --html_admon=bootstrap_panel --html_output=week36-bs --no_mako -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
@@ -196,7 +196,7 @@ MathJax.Hub.Config({
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Rgeression and Statistical interpretations</a>
<a class="navbar-brand" href="week36-bs.html">Week 36: Linear Regression and Statistical interpretations</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
@@ -265,7 +265,7 @@ MathJax.Hub.Config({
<!-- ------------------- main content ---------------------- -->
<div class="jumbotron">
<center>
<h1>Week 36: Linear Rgeression and Statistical interpretations</h1>
<h1>Week 36: Linear Regression and Statistical interpretations</h1>
</center> <!-- document title -->
<!-- author(s): Morten Hjorth-Jensen -->
+6 -4
View File
@@ -9,8 +9,8 @@ doconce format html week36-reveal.html week36-reveal reveal --html_slide_theme=b
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<!-- reveal.js: https://lab.hakim.se/reveal-js/ -->
@@ -168,7 +168,7 @@ MathJax.Hub.Config({
<section>
<!-- ------------------- main content ---------------------- -->
<center>
<h1 style="text-align: center;">Week 36: Linear Rgeression and Statistical interpretations</h1>
<h1 style="text-align: center;">Week 36: Linear Regression and Statistical interpretations</h1>
</center> <!-- document title -->
<!-- author(s): Morten Hjorth-Jensen -->
@@ -272,6 +272,8 @@ penalization of the parameters since their magnitude&#160;depends on the
scale of their corresponding&#160;predictor.
</p>
<p>The <b>Scikit-Learn</b> site <a href="https://scikit-learn.org/stable/auto_examples/preprocessing/plot_all_scaling.html#plot-all-scaling-standard-scaler-section" target="_blank"><tt>https://scikit-learn.org/stable/auto_examples/preprocessing/plot_all_scaling.html#plot-all-scaling-standard-scaler-section</tt></a> has a good discussion of different ways of preprocessing data.</p>
<p>Suppose as an example that you
you have an input&#160;variable given by the heights of different persons.
Human height might be measured in inches or meters or
@@ -536,7 +538,7 @@ beta = fit_beta(X - X_offset, y - y_offset)
intercept = np.mean(y_offset - X_offset @ beta)
<span style="color: #658b00">print</span>(<span style="color: #CD5555">f&quot;Manual intercept: {</span>intercept<span style="color: #CD5555">}&quot;</span>)
<span style="color: #658b00">print</span>(<span style="color: #CD5555">f&quot;Fitted beta (wiothout intercept): {</span>beta<span style="color: #CD5555">}&quot;</span>)
<span style="color: #658b00">print</span>(<span style="color: #CD5555">f&quot;Fitted beta (without intercept): {</span>beta<span style="color: #CD5555">}&quot;</span>)
<span style="color: #658b00">print</span>(<span style="color: #CD5555">f&quot;Sklearn intercept: {</span>skl.intercept_<span style="color: #CD5555">}&quot;</span>)
<span style="color: #658b00">print</span>(<span style="color: #CD5555">f&quot;Sklearn fitted beta (without intercept): {</span>skl.coef_<span style="color: #CD5555">}&quot;</span>)
ypredictOwn = X @ beta
+6 -4
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --pygments_html_style=perldoc --html_style=sol
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<link href="https://cdn.rawgit.com/doconce/doconce/master/bundled/html_styles/style_solarized_box/css/solarized_light_code.css" rel="stylesheet" type="text/css" title="light"/>
<script src="https://cdn.rawgit.com/doconce/doconce/master/bundled/html_styles/style_solarized_box/js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
@@ -217,7 +217,7 @@ MathJax.Hub.Config({
<!-- ------------------- main content ---------------------- -->
<center>
<h1>Week 36: Linear Rgeression and Statistical interpretations</h1>
<h1>Week 36: Linear Regression and Statistical interpretations</h1>
</center> <!-- document title -->
<!-- author(s): Morten Hjorth-Jensen -->
@@ -302,6 +302,8 @@ penalization of the parameters since their magnitude&#160;depends on the
scale of their corresponding&#160;predictor.
</p>
<p>The <b>Scikit-Learn</b> site <a href="https://scikit-learn.org/stable/auto_examples/preprocessing/plot_all_scaling.html#plot-all-scaling-standard-scaler-section" target="_blank"><tt>https://scikit-learn.org/stable/auto_examples/preprocessing/plot_all_scaling.html#plot-all-scaling-standard-scaler-section</tt></a> has a good discussion of different ways of preprocessing data.</p>
<p>Suppose as an example that you
you have an input&#160;variable given by the heights of different persons.
Human height might be measured in inches or meters or
@@ -536,7 +538,7 @@ beta = fit_beta(X - X_offset, y - y_offset)
intercept = np.mean(y_offset - X_offset @ beta)
<span style="color: #658b00">print</span>(<span style="color: #CD5555">f&quot;Manual intercept: {</span>intercept<span style="color: #CD5555">}&quot;</span>)
<span style="color: #658b00">print</span>(<span style="color: #CD5555">f&quot;Fitted beta (wiothout intercept): {</span>beta<span style="color: #CD5555">}&quot;</span>)
<span style="color: #658b00">print</span>(<span style="color: #CD5555">f&quot;Fitted beta (without intercept): {</span>beta<span style="color: #CD5555">}&quot;</span>)
<span style="color: #658b00">print</span>(<span style="color: #CD5555">f&quot;Sklearn intercept: {</span>skl.intercept_<span style="color: #CD5555">}&quot;</span>)
<span style="color: #658b00">print</span>(<span style="color: #CD5555">f&quot;Sklearn fitted beta (without intercept): {</span>skl.coef_<span style="color: #CD5555">}&quot;</span>)
ypredictOwn = X @ beta
+6 -4
View File
@@ -8,8 +8,8 @@ doconce format html week36.do.txt --pygments_html_style=default --html_style=blo
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/doconce/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Week 36: Linear Rgeression and Statistical interpretations">
<title>Week 36: Linear Rgeression and Statistical interpretations</title>
<meta name="description" content="Week 36: Linear Regression and Statistical interpretations">
<title>Week 36: Linear Regression and Statistical interpretations</title>
<style type="text/css">
/* bloodish style */
body {
@@ -294,7 +294,7 @@ MathJax.Hub.Config({
<!-- ------------------- main content ---------------------- -->
<center>
<h1>Week 36: Linear Rgeression and Statistical interpretations</h1>
<h1>Week 36: Linear Regression and Statistical interpretations</h1>
</center> <!-- document title -->
<!-- author(s): Morten Hjorth-Jensen -->
@@ -379,6 +379,8 @@ penalization of the parameters since their magnitude&#160;depends on the
scale of their corresponding&#160;predictor.
</p>
<p>The <b>Scikit-Learn</b> site <a href="https://scikit-learn.org/stable/auto_examples/preprocessing/plot_all_scaling.html#plot-all-scaling-standard-scaler-section" target="_blank"><tt>https://scikit-learn.org/stable/auto_examples/preprocessing/plot_all_scaling.html#plot-all-scaling-standard-scaler-section</tt></a> has a good discussion of different ways of preprocessing data.</p>
<p>Suppose as an example that you
you have an input&#160;variable given by the heights of different persons.
Human height might be measured in inches or meters or
@@ -613,7 +615,7 @@ beta <span style="color: #666666">=</span> fit_beta(X <span style="color: #66666
intercept <span style="color: #666666">=</span> np<span style="color: #666666">.</span>mean(y_offset <span style="color: #666666">-</span> X_offset <span style="color: #666666">@</span> beta)
<span style="color: #008000">print</span>(<span style="color: #BA2121">f&quot;Manual intercept: </span><span style="color: #BB6688; font-weight: bold">{</span>intercept<span style="color: #BB6688; font-weight: bold">}</span><span style="color: #BA2121">&quot;</span>)
<span style="color: #008000">print</span>(<span style="color: #BA2121">f&quot;Fitted beta (wiothout intercept): </span><span style="color: #BB6688; font-weight: bold">{</span>beta<span style="color: #BB6688; font-weight: bold">}</span><span style="color: #BA2121">&quot;</span>)
<span style="color: #008000">print</span>(<span style="color: #BA2121">f&quot;Fitted beta (without intercept): </span><span style="color: #BB6688; font-weight: bold">{</span>beta<span style="color: #BB6688; font-weight: bold">}</span><span style="color: #BA2121">&quot;</span>)
<span style="color: #008000">print</span>(<span style="color: #BA2121">f&quot;Sklearn intercept: </span><span style="color: #BB6688; font-weight: bold">{</span>skl<span style="color: #666666">.</span>intercept_<span style="color: #BB6688; font-weight: bold">}</span><span style="color: #BA2121">&quot;</span>)
<span style="color: #008000">print</span>(<span style="color: #BA2121">f&quot;Sklearn fitted beta (without intercept): </span><span style="color: #BB6688; font-weight: bold">{</span>skl<span style="color: #666666">.</span>coef_<span style="color: #BB6688; font-weight: bold">}</span><span style="color: #BA2121">&quot;</span>)
ypredictOwn <span style="color: #666666">=</span> X <span style="color: #666666">@</span> beta
Binary file not shown.
File diff suppressed because it is too large Load Diff
+4 -2
View File
@@ -1,4 +1,4 @@
TITLE: Week 36: Linear Rgeression and Statistical interpretations
TITLE: Week 36: Linear Regression and Statistical interpretations
AUTHOR: Morten Hjorth-Jensen {copyright, 1999-present|CC BY-NC} at Department of Physics, University of Oslo & Department of Physics and Astronomy and National Superconducting Cyclotron Laboratory, Michigan State University
DATE: September 2-6, 2024
@@ -61,6 +61,8 @@ If you need to scale the data, not doing so will give an *unfair*
penalization of the parameters since their magnitude depends on the
scale of their corresponding predictor.
The _Scikit-Learn_ site URL:"https://scikit-learn.org/stable/auto_examples/preprocessing/plot_all_scaling.html#plot-all-scaling-standard-scaler-section" has a good discussion of different ways of preprocessing data.
Suppose as an example that you
you have an input variable given by the heights of different persons.
Human height might be measured in inches or meters or
@@ -293,7 +295,7 @@ beta = fit_beta(X - X_offset, y - y_offset)
intercept = np.mean(y_offset - X_offset @ beta)
print(f"Manual intercept: {intercept}")
print(f"Fitted beta (wiothout intercept): {beta}")
print(f"Fitted beta (without intercept): {beta}")
print(f"Sklearn intercept: {skl.intercept_}")
print(f"Sklearn fitted beta (without intercept): {skl.coef_}")
ypredictOwn = X @ beta