Skip to content

Commit ad16094

Browse files
committed
2 parents 60bda39 + a66b313 commit ad16094

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/01-Problem-Setup.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ <h1 class="title d-none d-lg-block"><span class="chapter-number">2</span>&nbsp;
249249
</header>
250250

251251

252-
<p><em>In the first week of class, we will go over</em></p>
252+
<p><em>In the first week of class, we will go over what machine learning models are good for, what kind of machine learning models are out there and how does one evaluate and pick models, all at a conceptual level. Then, we will get our hands on the NumPy package to prepare our data for our models for the rest of the course.</em></p>
253253
<p>Suppose that we are given the <a href="https://www.cdc.gov/nchs/nhanes/"><strong>N</strong>ational <strong>H</strong>ealth <strong>A</strong>nd <strong>N</strong>utrition <strong>E</strong>xamination <strong>S</strong>urvey (NHANES) dataset</a> and want to build a machine learning model to predict a person’s blood pressure based on clinical and demographic variables.</p>
254254
<p>Using algebraic expressions, we formulate the following:</p>
255255
<p><span class="math display">\[
@@ -285,7 +285,7 @@ <h2 data-number="2.2" class="anchored" data-anchor-id="how-to-evaluate-and-pick-
285285
<section id="prediction" class="level3" data-number="2.2.1">
286286
<h3 data-number="2.2.1" class="anchored" data-anchor-id="prediction"><span class="header-section-number">2.2.1</span> Prediction</h3>
287287
<p>Suppose we try to use the variable <span class="math inline">\(BMI\)</span> to predict <span class="math inline">\(BloodPressure\)</span> using a linear model.</p>
288-
<div id="2c1f20ff" class="cell" data-execution_count="1">
288+
<div id="d53b5a44" class="cell" data-execution_count="1">
289289
<div class="sourceCode cell-code" id="cb1"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> pandas <span class="im">as</span> pd</span>
290290
<span id="cb1-2"><a href="#cb1-2" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> seaborn <span class="im">as</span> sns</span>
291291
<span id="cb1-3"><a href="#cb1-3" aria-hidden="true" tabindex="-1"></a>nhanes <span class="op">=</span> pd.read_csv(<span class="st">"classroom_data/NHANES.csv"</span>)</span>
208 Bytes
Loading

0 commit comments

Comments
 (0)