Skip to content

Commit db97f46

Browse files
committed
Update documentation
1 parent f539483 commit db97f46

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

4-viz/plotting.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<link rel="stylesheet" type="text/css" href="../_static/styles/sphinx-book-theme.css?v=a3416100" />
3333
<link rel="stylesheet" type="text/css" href="../_static/togglebutton.css?v=13237357" />
3434
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v=76b2166b" />
35-
<link rel="stylesheet" type="text/css" href="../_static/mystnb.4510f1fc1dee50b3e5859aac5469c37c29e427902b24a333a5f9fcb2f0b3ac41.css" />
35+
<link rel="stylesheet" type="text/css" href="../_static/mystnb.4510f1fc1dee50b3e5859aac5469c37c29e427902b24a333a5f9fcb2f0b3ac41.css?v=be8a1c11" />
3636
<link rel="stylesheet" type="text/css" href="../_static/sphinx-thebe.css?v=4fa983c6" />
3737
<link rel="stylesheet" type="text/css" href="../_static/sphinx-design.min.css?v=95c83b7e" />
3838

@@ -667,7 +667,7 @@ <h2>Learning Objectives<a class="headerlink" href="#learning-objectives" title="
667667
<li><p>Customize basic features of a plot, such as axis labels, titles, colors, and line styles</p></li>
668668
</ul>
669669
<hr class="docutils" />
670-
<img src='https://matplotlib.org/stable/_static/logo2_compressed.svg' alt='Matplotlib' width=225>
670+
<img src='./images/matplotlib.svg' alt='Matplotlib' width=225>
671671
<p><a class="reference external" href="https://matplotlib.org/">Matplotlib</a> is, effectively, the core plotting and data visualization package in Python. Many other packages use Matplotlib for data visualization, including pandas, NumPy, and SciPy. Matplotlib is not the only visualization package in Python, by any means. There are many others, including <a class="reference external" href="https://seaborn.pydata.org">seaborn</a>, <a class="reference external" href="https://altair-viz.github.io">Altair</a>, <a class="reference external" href="http://yhat.github.io/ggpy/">ggpy</a>, <a class="reference external" href="https://docs.bokeh.org/en/latest/index.html">Bokeh</a>, and <a class="reference external" href="https://plot.ly">plot.ly</a>. Some of the others are actually built on top of Matplotlib, but simply the syntax for creating specific, complex types of graphics relative to what’s required in Matplotlib (these are called <strong>wrappers</strong> for Matplotlib). Others are entirely independent. Regardless, Matplotlib is the most widely-used and flexible package for data visualization in Python, and so it’s valuable to learn it first, and then build out your skills from there.</p>
672672
<p>Matplotlib is also a very mature Python package, having been first released in 2003 and continuously updated since then. It has a strong development community, a detailed website with extensive documentation and many examples, and there is copious third party documentation in the form of blog posts, books, and more — much of which is freely available.</p>
673673
</section>
@@ -709,7 +709,7 @@ <h2>Generating a Plot<a class="headerlink" href="#generating-a-plot" title="Link
709709
</div>
710710
</div>
711711
<div class="cell_output docutils container">
712-
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[&lt;matplotlib.lines.Line2D at 0x116631ee0&gt;]
712+
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[&lt;matplotlib.lines.Line2D at 0x12c575c10&gt;]
713713
</pre></div>
714714
</div>
715715
<img alt="../_images/d48df34b87b9597d955e407d7d37c0dce9bf038c8062deca32a14787419e325f.png" src="../_images/d48df34b87b9597d955e407d7d37c0dce9bf038c8062deca32a14787419e325f.png" />

_sources/4-viz/plotting.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"cell_type": "markdown",
3333
"metadata": {},
3434
"source": [
35-
"<img src='https://matplotlib.org/stable/_static/logo2_compressed.svg' alt='Matplotlib' width=225>\n",
35+
"<img src='./images/matplotlib.svg' alt='Matplotlib' width=225>\n",
3636
"\n",
3737
"[Matplotlib](https://matplotlib.org/) is, effectively, the core plotting and data visualization package in Python. Many other packages use Matplotlib for data visualization, including pandas, NumPy, and SciPy. Matplotlib is not the only visualization package in Python, by any means. There are many others, including [seaborn](https://seaborn.pydata.org), [Altair](https://altair-viz.github.io), [ggpy](http://yhat.github.io/ggpy/), [Bokeh](https://docs.bokeh.org/en/latest/index.html), and [plot.ly](https://plot.ly). Some of the others are actually built on top of Matplotlib, but simply the syntax for creating specific, complex types of graphics relative to what's required in Matplotlib (these are called **wrappers** for Matplotlib). Others are entirely independent. Regardless, Matplotlib is the most widely-used and flexible package for data visualization in Python, and so it's valuable to learn it first, and then build out your skills from there. \n",
3838
"\n",

searchindex.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)