Skip to content

Commit bede291

Browse files
committed
Update slides for new links.
1 parent 52a65e0 commit bede291

6 files changed

+154
-154
lines changed

slides/html/0-introduction.slides.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14824,7 +14824,7 @@ <h2 id="Let's-get-started">Let's get started<a class="anchor-link" href="#Let's-
1482414824
Reveal.slide(slideIndices.h, slideIndices.v, 100); // set fragment to large number to ensure the full slide is displayed
1482514825
}
1482614826
else if (typeof input === "string" || input instanceof String) {
14827-
const slideName = input.replace(' ', '-');
14827+
const slideName = input.replaceAll(' ', '-');
1482814828
if (namedSlides.includes(slideName)) window.location = `#/${slideName}`;
1482914829
}
1483014830
}

slides/html/1-getting_started_with_pandas.slides.html

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -14722,7 +14722,7 @@ <h2 id="Learning-Path">Learning Path<a class="anchor-link" href="#Learning-Path"
1472214722
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1472314723
</div>
1472414724
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
14725-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
14725+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_anatomy-of-a-dataframe" data-mime-type="text/markdown">
1472614726
<h2 id="Anatomy-of-a-DataFrame">Anatomy of a DataFrame<a class="anchor-link" href="#Anatomy-of-a-DataFrame">&#182;</a></h2><p>A <strong>DataFrame</strong> is composed of one or more <strong>Series</strong>. The names of the <strong>Series</strong> form the column names, and the row labels form the <strong>Index</strong>.</p>
1472714727

1472814728
</div>
@@ -14887,7 +14887,7 @@ <h2 id="Anatomy-of-a-DataFrame">Anatomy of a DataFrame<a class="anchor-link" hre
1488714887
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1488814888
</div>
1488914889
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
14890-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
14890+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_series" data-mime-type="text/markdown">
1489114891
<h4 id="Series:">Series:<a class="anchor-link" href="#Series:">&#182;</a></h4>
1489214892
</div>
1489314893
</div>
@@ -14944,7 +14944,7 @@ <h4 id="Series:">Series:<a class="anchor-link" href="#Series:">&#182;</a></h4>
1494414944
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1494514945
</div>
1494614946
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
14947-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
14947+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_columns-and-index" data-mime-type="text/markdown">
1494814948
<h4 id="Columns:">Columns:<a class="anchor-link" href="#Columns:">&#182;</a></h4>
1494914949
</div>
1495014950
</div>
@@ -15068,7 +15068,7 @@ <h2 id="Learning-Path">Learning Path<a class="anchor-link" href="#Learning-Path"
1506815068
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1506915069
</div>
1507015070
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
15071-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
15071+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_creating-dataframes" data-mime-type="text/markdown">
1507215072
<h2 id="Creating-DataFrames">Creating DataFrames<a class="anchor-link" href="#Creating-DataFrames">&#182;</a></h2><p>We can create DataFrames from a variety of sources such as other Python objects, flat files, webscraping, and API requests. Here, we will see just a couple of examples, but be sure to check out <a href="https://pandas.pydata.org/pandas-docs/stable/user_guide/io.html">this page</a> in the documentation for a complete list.</p>
1507315073

1507415074
</div>
@@ -15080,7 +15080,7 @@ <h2 id="Creating-DataFrames">Creating DataFrames<a class="anchor-link" href="#Cr
1508015080
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1508115081
</div>
1508215082
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
15083-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
15083+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_read-csv" data-mime-type="text/markdown">
1508415084
<h3 id="Using-a-flat-file">Using a flat file<a class="anchor-link" href="#Using-a-flat-file">&#182;</a></h3>
1508515085
</div>
1508615086
</div>
@@ -15109,7 +15109,7 @@ <h3 id="Using-a-flat-file">Using a flat file<a class="anchor-link" href="#Using-
1510915109
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1511015110
</div>
1511115111
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
15112-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
15112+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_api-request" data-mime-type="text/markdown">
1511315113
<h3 id="Using-data-from-an-API">Using data from an API<a class="anchor-link" href="#Using-data-from-an-API">&#182;</a></h3><p>Collect the data from <a href="https://data.nasa.gov/Space-Science/Meteorite-Landings/gh4g-9sfh">NASA's Open Data Portal</a> using the Socrata Open Data API (SODA) with the <code>requests</code> library:</p>
1511415114

1511515115
</div>
@@ -15148,7 +15148,7 @@ <h3 id="Using-data-from-an-API">Using data from an API<a class="anchor-link" hre
1514815148
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1514915149
</div>
1515015150
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
15151-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
15151+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_create-from-payload" data-mime-type="text/markdown">
1515215152
<p>Create the DataFrame with the resulting payload:</p>
1515315153

1515415154
</div>
@@ -15313,7 +15313,7 @@ <h2 id="Learning-Path">Learning Path<a class="anchor-link" href="#Learning-Path"
1531315313
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1531415314
</div>
1531515315
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
15316-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
15316+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_inspecting-the-data" data-mime-type="text/markdown">
1531715317
<h2 id="Inspecting-the-data">Inspecting the data<a class="anchor-link" href="#Inspecting-the-data">&#182;</a></h2><p>Now that we have some data, we need to perform an initial inspection of it. This gives us information on what the data looks like, how many rows/columns there are, and how much data we have.</p>
1531815318

1531915319
</div>
@@ -15337,7 +15337,7 @@ <h2 id="Inspecting-the-data">Inspecting the data<a class="anchor-link" href="#In
1533715337
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1533815338
</div>
1533915339
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
15340-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
15340+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_rows-and-columns" data-mime-type="text/markdown">
1534115341
<h4 id="How-many-rows-and-columns-are-there?">How many rows and columns are there?<a class="anchor-link" href="#How-many-rows-and-columns-are-there?">&#182;</a></h4>
1534215342
</div>
1534315343
</div>
@@ -15443,7 +15443,7 @@ <h4 id="What-are-the-column-names?">What are the column names?<a class="anchor-l
1544315443
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1544415444
</div>
1544515445
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
15446-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
15446+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_dtypes" data-mime-type="text/markdown">
1544715447
<h4 id="What-type-of-data-does-each-column-currently-hold?">What type of data does each column currently hold?<a class="anchor-link" href="#What-type-of-data-does-each-column-currently-hold?">&#182;</a></h4>
1544815448
</div>
1544915449
</div>
@@ -15505,7 +15505,7 @@ <h4 id="What-type-of-data-does-each-column-currently-hold?">What type of data do
1550515505
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1550615506
</div>
1550715507
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
15508-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
15508+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_head" data-mime-type="text/markdown">
1550915509
<h4 id="What-does-the-data-look-like?">What does the data look like?<a class="anchor-link" href="#What-does-the-data-look-like?">&#182;</a></h4>
1551015510
</div>
1551115511
</div>
@@ -15654,7 +15654,7 @@ <h4 id="What-does-the-data-look-like?">What does the data look like?<a class="an
1565415654
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1565515655
</div>
1565615656
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
15657-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
15657+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_tail" data-mime-type="text/markdown">
1565815658
<p>Sometimes there may be extraneous data at the end of the file, so checking the bottom few rows is also important:</p>
1565915659

1566015660
</div>
@@ -15804,7 +15804,7 @@ <h4 id="What-does-the-data-look-like?">What does the data look like?<a class="an
1580415804
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1580515805
</div>
1580615806
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
15807-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
15807+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_info-method" data-mime-type="text/markdown">
1580815808
<h4 id="Get-some-information-about-the-DataFrame">Get some information about the DataFrame<a class="anchor-link" href="#Get-some-information-about-the-DataFrame">&#182;</a></h4>
1580915809
</div>
1581015810
</div>
@@ -16176,7 +16176,7 @@ <h2 id="Learning-Path">Learning Path<a class="anchor-link" href="#Learning-Path"
1617616176
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1617716177
</div>
1617816178
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
16179-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
16179+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_extracting-subsets" data-mime-type="text/markdown">
1618016180
<h2 id="Extracting-subsets">Extracting subsets<a class="anchor-link" href="#Extracting-subsets">&#182;</a></h2><p>A crucial part of working with DataFrames is extracting subsets of the data: finding rows that meet a certain set of criteria, isolating columns/rows of interest, etc. After narrowing down our data, we are closer to discovering insights. This section will be the backbone of many analysis tasks.</p>
1618116181

1618216182
</div>
@@ -16188,7 +16188,7 @@ <h2 id="Extracting-subsets">Extracting subsets<a class="anchor-link" href="#Extr
1618816188
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1618916189
</div>
1619016190
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
16191-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
16191+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_selecting-columns" data-mime-type="text/markdown">
1619216192
<h4 id="Selecting-columns">Selecting columns<a class="anchor-link" href="#Selecting-columns">&#182;</a></h4><p>We can select columns as attributes if their names would be valid Python variables:</p>
1619316193

1619416194
</div>
@@ -16385,7 +16385,7 @@ <h4 id="Selecting-columns">Selecting columns<a class="anchor-link" href="#Select
1638516385
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1638616386
</div>
1638716387
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
16388-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
16388+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_selecting-rows" data-mime-type="text/markdown">
1638916389
<h4 id="Selecting-rows">Selecting rows<a class="anchor-link" href="#Selecting-rows">&#182;</a></h4>
1639016390
</div>
1639116391
</div>
@@ -16521,7 +16521,7 @@ <h4 id="Selecting-rows">Selecting rows<a class="anchor-link" href="#Selecting-ro
1652116521
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1652216522
</div>
1652316523
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
16524-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
16524+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_indexing" data-mime-type="text/markdown">
1652516525
<h4 id="Indexing">Indexing<a class="anchor-link" href="#Indexing">&#182;</a></h4><p>We use <code>iloc[]</code> to select rows and columns by their position:</p>
1652616526

1652716527
</div>
@@ -16736,7 +16736,7 @@ <h4 id="Indexing">Indexing<a class="anchor-link" href="#Indexing">&#182;</a></h4
1673616736
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1673716737
</div>
1673816738
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
16739-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
16739+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_filtering-with-boolean-masks" data-mime-type="text/markdown">
1674016740
<h4 id="Filtering-with-Boolean-masks">Filtering with Boolean masks<a class="anchor-link" href="#Filtering-with-Boolean-masks">&#182;</a></h4><p>A <strong>Boolean mask</strong> is a array-like structure of Boolean values &ndash; it's a way to specify which rows/columns we want to select (<code>True</code>) and which we don't (<code>False</code>).</p>
1674116741

1674216742
</div>
@@ -16986,7 +16986,7 @@ <h4 id="Filtering-with-Boolean-masks">Filtering with Boolean masks<a class="anch
1698616986
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1698716987
</div>
1698816988
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
16989-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
16989+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_query-method" data-mime-type="text/markdown">
1699016990
<p>An alternative to this is the <code>query()</code> method:</p>
1699116991

1699216992
</div>
@@ -17166,7 +17166,7 @@ <h2 id="Learning-Path">Learning Path<a class="anchor-link" href="#Learning-Path"
1716617166
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1716717167
</div>
1716817168
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
17169-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
17169+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_calculating-summary-statistics" data-mime-type="text/markdown">
1717017170
<h2 id="Calculating-summary-statistics">Calculating summary statistics<a class="anchor-link" href="#Calculating-summary-statistics">&#182;</a></h2><p>In the next section of this workshop, we will discuss data cleaning for a more meaningful analysis of our datasets; however, we can already extract some interesting insights from the <code>meteorites</code> data by calculating summary statistics.</p>
1717117171

1717217172
</div>
@@ -17178,7 +17178,7 @@ <h2 id="Calculating-summary-statistics">Calculating summary statistics<a class="
1717817178
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1717917179
</div>
1718017180
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
17181-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
17181+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_value-counts" data-mime-type="text/markdown">
1718217182
<h4 id="How-many-of-the-meteorites-were-found-versus-observed-falling?">How many of the meteorites were found versus observed falling?<a class="anchor-link" href="#How-many-of-the-meteorites-were-found-versus-observed-falling?">&#182;</a></h4>
1718317183
</div>
1718417184
</div>
@@ -17244,7 +17244,7 @@ <h4 id="How-many-of-the-meteorites-were-found-versus-observed-falling?">How many
1724417244
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1724517245
</div>
1724617246
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
17247-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
17247+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_quantiles" data-mime-type="text/markdown">
1724817248
<h4 id="What-was-the-mass-of-the-average-meterorite?">What was the mass of the average meterorite?<a class="anchor-link" href="#What-was-the-mass-of-the-average-meterorite?">&#182;</a></h4>
1724917249
</div>
1725017250
</div>
@@ -17353,7 +17353,7 @@ <h4 id="What-was-the-mass-of-the-average-meterorite?">What was the mass of the a
1735317353
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1735417354
</div>
1735517355
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
17356-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
17356+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_max-and-idxmax" data-mime-type="text/markdown">
1735717357
<h4 id="What-was-the-mass-of-the-heaviest-meteorite?">What was the mass of the heaviest meteorite?<a class="anchor-link" href="#What-was-the-mass-of-the-heaviest-meteorite?">&#182;</a></h4>
1735817358
</div>
1735917359
</div>
@@ -17483,7 +17483,7 @@ <h4 id="What-was-the-mass-of-the-heaviest-meteorite?">What was the mass of the h
1748317483
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1748417484
</div>
1748517485
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
17486-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
17486+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_unique-and-nunique" data-mime-type="text/markdown">
1748717487
<h4 id="How-many-different-types-of-meteorite-classes-are-represented-in-this-dataset?">How many different types of meteorite classes are represented in this dataset?<a class="anchor-link" href="#How-many-different-types-of-meteorite-classes-are-represented-in-this-dataset?">&#182;</a></h4>
1748817488
</div>
1748917489
</div>
@@ -17602,7 +17602,7 @@ <h4 id="How-many-different-types-of-meteorite-classes-are-represented-in-this-da
1760217602
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
1760317603
</div>
1760417604
<div class="jp-InputArea jp-Cell-inputArea"><div class="jp-InputPrompt jp-InputArea-prompt">
17605-
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
17605+
</div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput celltag_id_describe-method" data-mime-type="text/markdown">
1760617606
<h4 id="Get-some-summary-statistics-on-the-data-itself">Get some summary statistics on the data itself<a class="anchor-link" href="#Get-some-summary-statistics-on-the-data-itself">&#182;</a></h4><p>We can get common summary statistics for all columns at once. By default, this will only be numeric columns, but here, we will summarize everything together:</p>
1760717607

1760817608
</div>
@@ -18153,7 +18153,7 @@ <h2 id="Section-1-Complete-%F0%9F%8E%89">Section 1 Complete &#127881;<a class="a
1815318153
Reveal.slide(slideIndices.h, slideIndices.v, 100); // set fragment to large number to ensure the full slide is displayed
1815418154
}
1815518155
else if (typeof input === "string" || input instanceof String) {
18156-
const slideName = input.replace(' ', '-');
18156+
const slideName = input.replaceAll(' ', '-');
1815718157
if (namedSlides.includes(slideName)) window.location = `#/${slideName}`;
1815818158
}
1815918159
}

0 commit comments

Comments
 (0)