Skip to content

Commit

Permalink
deploy: 5ac7d0f
Browse files Browse the repository at this point in the history
  • Loading branch information
roualdes committed Dec 16, 2023
1 parent fb760ef commit 19ac647
Show file tree
Hide file tree
Showing 17 changed files with 657 additions and 102 deletions.
2 changes: 1 addition & 1 deletion .buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 4802999742871d4d2cb4e3d9f67ebae9
config: ad6d1dd53887136095a9742e9d99881d
tags: 645f666f9bcd5a90fca523b33c5a78b7
14 changes: 6 additions & 8 deletions README.html
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="syllabus.html">Syllabus</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-01.html">Week 01: Getting started</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-01.html">Week 01: Python basics</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-02.html">Week 02: Introduction to working with data</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-03.html">Week 03: Wrangling data and intro to graphing</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-04.html">Week 04: Intermediate grahping &amp; importing external data</a></li>
Expand Down Expand Up @@ -429,13 +429,6 @@ <h1>MATH131<a class="headerlink" href="#math131" title="Permalink to this headin
<div class="footer-item">


<p class="copyright">

© Copyright 2022.
<br/>

</p>

</div>

<div class="footer-item">
Expand All @@ -444,6 +437,11 @@ <h1>MATH131<a class="headerlink" href="#math131" title="Permalink to this headin

<div class="footer-item">

<div class="extra_footer">
<br>
<p>This work is licensed under a <a href="https://creativecommons.org/publicdomain/zero/1.0/">Creative Commons Zero license</a></p>

</div>
</div>

</div>
Expand Down
10 changes: 6 additions & 4 deletions _sources/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,20 @@

Anyone who wants to do their own data analysis! This is a primer to get the
complete novice up and running with the basic knowledge of how to use the
statistical programming language Python for data analysis. Topics include: Python
computer programming language Python for data analysis. Topics include: Python
programming basics, importing data, properties of tidy data, visualizing data,
reproducible research with Markdown and basic data wrangling. Designed to get
you up and running with basic knowledge of Python and Markdown ASAP. This course is
designed as a pre-requisite for most upper division Statistics, and all Data
Science courses which use Python heavily.
Science courses which use Python.

See the [syllabus](syllabus.md) for details about the current class offerings.

### Schedule

##### [Week 01: Getting started](week-01.md)
##### [Week 00: Start here](week-00.md)

##### [Week 01: Python basics](week-01.md)

##### [Week 02: Introduction to working with data](week-02.md)

Expand All @@ -25,4 +27,4 @@ See the [syllabus](syllabus.md) for details about the current class offerings.

##### [Week 05: Putting it all together](week-05.md)

This work is licensed under a [Creative Commons Zero license](https://creativecommons.org/publicdomain/zero/1.0/)
##### [Week 06 and beyond][and-beyond.md]
46 changes: 46 additions & 0 deletions _sources/week-00.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
jupytext:
formats: md:myst
text_representation:
extension: .md
format_name: myst
format_version: 0.13
jupytext_version: 1.11.5
kernelspec:
display_name: Python 3
language: python
name: python3
---

# Week 00: Start here

### Lessons and Assignments

Lessons found on this website. Lessons contain the explanations of what's to
come in the assignments. Examples and all.

For assignments, we'll use Google Colab with your [email protected]
account (same password as your [email protected] account).

### Google Colab

[Google Colab](https://colab.research.google.com) provides a notebook
environment where the user can develop a reproducible document that blends text
and code together. Such reproducible documents are popular in the world of data
science, statistics, machine learning, and the various applied sciences that use
programming. By combining text and code, you can walk (via text) your audience
through an analysis (usually via code and/or math), showing the exact code you
used to draw any conclusions about the data or otherwise.

We will use Google Colab for free, as part of your campus Google account
[email protected]. The free aspect means we'll have to deal with some
issues that don't otherwise come about if we were to install Python on our own
personal machines. I, Edward, have made the active choice to use Google Colab
instead of teaching you how to installing Python on your personal machine,
because I believe we can get started faster this way. If you want to follow
along with this course using your different tools, please see the details on the
page [Week 06 and beyond][and-beyond.md].

From here, there's really no better way to learn about Google Colab than to go
touch it. Here's a link to [the Colab notebook associated with Week 00: Start
here](https://colab.research.google.com/drive/1weKuFgd98W76BloyuuB4d2HudB5KLYew?usp=sharing).
4 changes: 3 additions & 1 deletion _sources/week-01.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ kernelspec:
name: python3
---

# Week 01: Getting started
# Week 01: Python basics

[Colab notebook](https://colab.research.google.com/drive/1hh49hQRkhxcE1ldXCB7QKNkr3RkCiA4J?usp=sharing)

Jupyter Book also lets you write text-based notebooks using MyST Markdown.
See [the Notebooks with MyST Markdown documentation](https://jupyterbook.org/file-types/myst-notebooks.html) for more detailed instructions.
Expand Down
14 changes: 6 additions & 8 deletions genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="syllabus.html">Syllabus</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-01.html">Week 01: Getting started</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-01.html">Week 01: Python basics</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-02.html">Week 02: Introduction to working with data</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-03.html">Week 03: Wrangling data and intro to graphing</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-04.html">Week 04: Intermediate grahping &amp; importing external data</a></li>
Expand Down Expand Up @@ -363,13 +363,6 @@ <h1 id="index">Index</h1>
<div class="footer-item">


<p class="copyright">

© Copyright 2022.
<br/>

</p>

</div>

<div class="footer-item">
Expand All @@ -378,6 +371,11 @@ <h1 id="index">Index</h1>

<div class="footer-item">

<div class="extra_footer">
<br>
<p>This work is licensed under a <a href="https://creativecommons.org/publicdomain/zero/1.0/">Creative Commons Zero license</a></p>

</div>
</div>

</div>
Expand Down
37 changes: 22 additions & 15 deletions intro.html
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="syllabus.html">Syllabus</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-01.html">Week 01: Getting started</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-01.html">Week 01: Python basics</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-02.html">Week 02: Introduction to working with data</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-03.html">Week 03: Wrangling data and intro to graphing</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-04.html">Week 04: Intermediate grahping &amp; importing external data</a></li>
Expand Down Expand Up @@ -371,11 +371,13 @@ <h2> Contents </h2>
<ul class="visible nav section-nav flex-column">
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#target-audience">Target Audience</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#schedule">Schedule</a><ul class="nav section-nav flex-column">
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-01-getting-started"><span class="xref myst">Week 01: Getting started</span></a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-00-start-here"><span class="xref myst">Week 00: Start here</span></a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-01-python-basics"><span class="xref myst">Week 01: Python basics</span></a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-02-introduction-to-working-with-data"><span class="xref myst">Week 02: Introduction to working with data</span></a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-03-wrangling-data-and-intro-to-graphing"><span class="xref myst">Week 03: Wrangling data and intro to graphing</span></a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-04-intermediate-graphing-importing-external-data"><span class="xref myst">Week 04: Intermediate graphing &amp; importing external data</span></a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-05-putting-it-all-together"><span class="xref myst">Week 05: Putting it all together</span></a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-06-and-beyond-and-beyond-md">[Week 06 and beyond][and-beyond.md]</a></li>
</ul>
</li>
</ul>
Expand All @@ -395,18 +397,21 @@ <h1>MATH 131: Introduction to Python<a class="headerlink" href="#math-131-introd
<h2>Target Audience<a class="headerlink" href="#target-audience" title="Permalink to this heading">#</a></h2>
<p>Anyone who wants to do their own data analysis! This is a primer to get the
complete novice up and running with the basic knowledge of how to use the
statistical programming language Python for data analysis. Topics include: Python
computer programming language Python for data analysis. Topics include: Python
programming basics, importing data, properties of tidy data, visualizing data,
reproducible research with Markdown and basic data wrangling. Designed to get
you up and running with basic knowledge of Python and Markdown ASAP. This course is
designed as a pre-requisite for most upper division Statistics, and all Data
Science courses which use Python heavily.</p>
Science courses which use Python.</p>
<p>See the <a class="reference internal" href="syllabus.html"><span class="doc std std-doc">syllabus</span></a> for details about the current class offerings.</p>
</section>
<section id="schedule">
<h2>Schedule<a class="headerlink" href="#schedule" title="Permalink to this heading">#</a></h2>
<section id="week-01-getting-started">
<h3><a class="reference internal" href="week-01.html"><span class="doc std std-doc">Week 01: Getting started</span></a><a class="headerlink" href="#week-01-getting-started" title="Permalink to this heading">#</a></h3>
<section id="week-00-start-here">
<h3><a class="reference internal" href="week-00.html"><span class="doc std std-doc">Week 00: Start here</span></a><a class="headerlink" href="#week-00-start-here" title="Permalink to this heading">#</a></h3>
</section>
<section id="week-01-python-basics">
<h3><a class="reference internal" href="week-01.html"><span class="doc std std-doc">Week 01: Python basics</span></a><a class="headerlink" href="#week-01-python-basics" title="Permalink to this heading">#</a></h3>
</section>
<section id="week-02-introduction-to-working-with-data">
<h3><a class="reference internal" href="week-02.html"><span class="doc std std-doc">Week 02: Introduction to working with data</span></a><a class="headerlink" href="#week-02-introduction-to-working-with-data" title="Permalink to this heading">#</a></h3>
Expand All @@ -419,7 +424,9 @@ <h3><a class="reference internal" href="week-04.html"><span class="doc std std-d
</section>
<section id="week-05-putting-it-all-together">
<h3><a class="reference internal" href="week-05.html"><span class="doc std std-doc">Week 05: Putting it all together</span></a><a class="headerlink" href="#week-05-putting-it-all-together" title="Permalink to this heading">#</a></h3>
<p>This work is licensed under a <a class="reference external" href="https://creativecommons.org/publicdomain/zero/1.0/">Creative Commons Zero license</a></p>
</section>
<section id="week-06-and-beyond-and-beyond-md">
<h3>[Week 06 and beyond][<a class="reference external" href="http://and-beyond.md">and-beyond.md</a>]<a class="headerlink" href="#week-06-and-beyond-and-beyond-md" title="Permalink to this heading">#</a></h3>
</section>
</section>
<div class="toctree-wrapper compound">
Expand Down Expand Up @@ -482,11 +489,13 @@ <h3><a class="reference internal" href="week-05.html"><span class="doc std std-d
<ul class="visible nav section-nav flex-column">
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#target-audience">Target Audience</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#schedule">Schedule</a><ul class="nav section-nav flex-column">
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-01-getting-started"><span class="xref myst">Week 01: Getting started</span></a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-00-start-here"><span class="xref myst">Week 00: Start here</span></a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-01-python-basics"><span class="xref myst">Week 01: Python basics</span></a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-02-introduction-to-working-with-data"><span class="xref myst">Week 02: Introduction to working with data</span></a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-03-wrangling-data-and-intro-to-graphing"><span class="xref myst">Week 03: Wrangling data and intro to graphing</span></a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-04-intermediate-graphing-importing-external-data"><span class="xref myst">Week 04: Intermediate graphing &amp; importing external data</span></a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-05-putting-it-all-together"><span class="xref myst">Week 05: Putting it all together</span></a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#week-06-and-beyond-and-beyond-md">[Week 06 and beyond][and-beyond.md]</a></li>
</ul>
</li>
</ul>
Expand All @@ -511,13 +520,6 @@ <h3><a class="reference internal" href="week-05.html"><span class="doc std std-d
<div class="footer-item">


<p class="copyright">

© Copyright 2022.
<br/>

</p>

</div>

<div class="footer-item">
Expand All @@ -526,6 +528,11 @@ <h3><a class="reference internal" href="week-05.html"><span class="doc std std-d

<div class="footer-item">

<div class="extra_footer">
<br>
<p>This work is licensed under a <a href="https://creativecommons.org/publicdomain/zero/1.0/">Creative Commons Zero license</a></p>

</div>
</div>

</div>
Expand Down
Binary file modified objects.inv
Binary file not shown.
14 changes: 6 additions & 8 deletions search.html
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="syllabus.html">Syllabus</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-01.html">Week 01: Getting started</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-01.html">Week 01: Python basics</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-02.html">Week 02: Introduction to working with data</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-03.html">Week 03: Wrangling data and intro to graphing</a></li>
<li class="toctree-l1"><a class="reference internal" href="week-04.html">Week 04: Intermediate grahping &amp; importing external data</a></li>
Expand Down Expand Up @@ -375,13 +375,6 @@ <h1>Search</h1>
<div class="footer-item">


<p class="copyright">

© Copyright 2022.
<br/>

</p>

</div>

<div class="footer-item">
Expand All @@ -390,6 +383,11 @@ <h1>Search</h1>

<div class="footer-item">

<div class="extra_footer">
<br>
<p>This work is licensed under a <a href="https://creativecommons.org/publicdomain/zero/1.0/">Creative Commons Zero license</a></p>

</div>
</div>

</div>
Expand Down
Loading

0 comments on commit 19ac647

Please sign in to comment.