Skip to content

Commit

Permalink
fix #10
Browse files Browse the repository at this point in the history
  • Loading branch information
gagolews committed Aug 23, 2023
1 parent cac0ee9 commit 159c9d7
Show file tree
Hide file tree
Showing 25 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion docs/chapter/000-preface.html
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ <h2>You can make this book better<a class="headerlink" href="#you-can-make-this-
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
20 changes: 10 additions & 10 deletions docs/chapter/110-setup.html
Original file line number Diff line number Diff line change
Expand Up @@ -469,14 +469,14 @@ <h3><span class="section-number">1.2.3. </span>More cells<a class="headerlink" h
<li><p>Press <kbd class="kbd compound docutils literal notranslate"><kbd class="kbd docutils literal notranslate">Shift</kbd>+<kbd class="kbd docutils literal notranslate">Enter</kbd></kbd> to execute the code cell,
create a new one below, and then enter the edit mode.</p></li>
<li><p>In the new cell, enter and then execute the following:</p>
<div class="python docutils">
<p>import matplotlib.pyplot as plt # basic plotting library
plt.bar(
[“Python”, “JavaScript”, “HTML”, “CSS”], # a list of strings
[80, 30, 10, 15] # a list of integers (the corresponding bar heights)
)
plt.title(“What makes you happy?”)
plt.show()</p>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">matplotlib.pyplot</span> <span class="k">as</span> <span class="nn">plt</span> <span class="c1"># basic plotting library</span>
<span class="n">plt</span><span class="o">.</span><span class="n">bar</span><span class="p">(</span>
<span class="p">[</span><span class="s2">&quot;Python&quot;</span><span class="p">,</span> <span class="s2">&quot;JavaScript&quot;</span><span class="p">,</span> <span class="s2">&quot;HTML&quot;</span><span class="p">,</span> <span class="s2">&quot;CSS&quot;</span><span class="p">],</span> <span class="c1"># a list of strings</span>
<span class="p">[</span><span class="mi">80</span><span class="p">,</span> <span class="mi">30</span><span class="p">,</span> <span class="mi">10</span><span class="p">,</span> <span class="mi">15</span><span class="p">]</span> <span class="c1"># a list of integers (the corresponding bar heights)</span>
<span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">title</span><span class="p">(</span><span class="s2">&quot;What makes you happy?&quot;</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">show</span><span class="p">()</span>
</pre></div>
</div>
</li>
<li><p>Add three more code cells, displaying some text
Expand Down Expand Up @@ -664,7 +664,7 @@ <h2><span class="section-number">1.3. </span>The best note-taking app<a class="h
in this book:</p>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">sys</span>
<span class="nb">print</span><span class="p">(</span><span class="n">sys</span><span class="o">.</span><span class="n">version</span><span class="p">)</span>
<span class="c1">## 3.10.6 (main, May 29 2023, 11:10:38) [GCC 11.3.0]</span>
<span class="c1">## 3.10.12 (main, Jun 11 2023, 05:26:28) [GCC 11.4.0]</span>
</pre></div>
</div>
<p>The versions of the packages that we use in this course
Expand Down Expand Up @@ -811,7 +811,7 @@ <h2><span class="section-number">1.5. </span>Exercises<a class="headerlink" href
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/120-scalar.html
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ <h2><span class="section-number">2.5. </span>Exercises<a class="headerlink" href
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/130-sequential.html
Original file line number Diff line number Diff line change
Expand Up @@ -1242,7 +1242,7 @@ <h2><span class="section-number">3.7. </span>Exercises<a class="headerlink" href
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/210-vector.html
Original file line number Diff line number Diff line change
Expand Up @@ -1437,7 +1437,7 @@ <h2><span class="section-number">4.4. </span>Exercises<a class="headerlink" href
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/220-transform-vector.html
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ <h2><span class="section-number">5.6. </span>Exercises<a class="headerlink" href
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/230-distribution.html
Original file line number Diff line number Diff line change
Expand Up @@ -1708,7 +1708,7 @@ <h2><span class="section-number">6.6. </span>Exercises<a class="headerlink" href
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/310-matrix.html
Original file line number Diff line number Diff line change
Expand Up @@ -1318,7 +1318,7 @@ <h2><span class="section-number">7.5. </span>Exercises<a class="headerlink" href
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/320-transform-matrix.html
Original file line number Diff line number Diff line change
Expand Up @@ -1761,7 +1761,7 @@ <h2><span class="section-number">8.5. </span>Exercises<a class="headerlink" href
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/330-relationship.html
Original file line number Diff line number Diff line change
Expand Up @@ -3009,7 +3009,7 @@ <h2><span class="section-number">9.5. </span>Exercises<a class="headerlink" href
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/410-data-frame.html
Original file line number Diff line number Diff line change
Expand Up @@ -2292,7 +2292,7 @@ <h2><span class="section-number">10.7. </span>Exercises<a class="headerlink" hre
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/420-categorical.html
Original file line number Diff line number Diff line change
Expand Up @@ -1860,7 +1860,7 @@ <h2><span class="section-number">11.5. </span>Exercises<a class="headerlink" hre
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/430-group-by.html
Original file line number Diff line number Diff line change
Expand Up @@ -2442,7 +2442,7 @@ <h2><span class="section-number">12.6. </span>Exercises<a class="headerlink" hre
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/440-sql.html
Original file line number Diff line number Diff line change
Expand Up @@ -1370,7 +1370,7 @@ <h2><span class="section-number">13.7. </span>Exercises<a class="headerlink" hre
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/510-text.html
Original file line number Diff line number Diff line change
Expand Up @@ -1851,7 +1851,7 @@ <h2><span class="section-number">14.5. </span>Exercises<a class="headerlink" hre
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/520-missingness.html
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@ <h2><span class="section-number">15.5. </span>Exercises<a class="headerlink" hre
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/530-time-series.html
Original file line number Diff line number Diff line change
Expand Up @@ -1373,7 +1373,7 @@ <h2><span class="section-number">16.5. </span>Exercises<a class="headerlink" hre
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/998-changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ <h1>Changelog<a class="headerlink" href="#changelog" title="Permalink to this he
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/999-bibliography.html
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ <h1>References<a class="headerlink" href="#references" title="Permalink to this
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/chapter/chapter-header-motd.html
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
Binary file modified docs/datawranglingpy.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ <h1 id="index">Index</h1>
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ <h1>Minimalist Data Wrangling with Python<a class="headerlink" href="#minimalist
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
Last updated on 2023-08-12T16:51:37+0200.
Last updated on 2023-08-23T10:36:12+0200.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

0 comments on commit 159c9d7

Please sign in to comment.