Skip to content

Commit 3615d3c

Browse files
committed
adding new numpy resources
1 parent b586659 commit 3615d3c

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

content/pages/03-data/17-scipy-numpy.markdown

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,19 @@ following resources are broader walkthroughs for the SciPy ecosystem:
6767
computation and how to perform operations that get the results you need
6868
for your data analysis.
6969

70+
* [Scientific Computing in Python: Introduction to NumPy and Matplotlib](https://sebastianraschka.com/blog/2020/numpy-intro.html)
71+
is a detailed tutorial that goes through the basics for NumPy and
72+
then connects it to [Matplotlib](/matplotlib.html).
73+
7074
* [Math to Code](https://mathtocode.com/) provides an interactive
7175
tutorial to learn how to implement math in NumPy.
7276

7377
* [101 NumPy Exercises for Data Analysis](https://www.machinelearningplus.com/python/101-numpy-exercises-python/)
78+
has a bunch of questions and answers to common ways to work with NumPy
79+
and is useful to understand what you can do with this library.
7480

7581
* [NumPy: creating and manipulating numerical data](http://www.scipy-lectures.org/intro/numpy/index.html)
82+
contains many code examples for common operations.
7683

7784
* [Python NumPy Array Tutorial](https://www.datacamp.com/community/tutorials/python-numpy-tutorial)
7885
is a starter tutorial specifically focused on using and working

theme/templates/article.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
{% if article %}
2626
<div class="row">
2727
<div class="c12">
28-
<h1 style="font-size: 36px;">{{ article.title }}</h1>
28+
<h1 style="font-size: 32px;">{{ article.title }}</h1>
2929
<div style="font-size:12px;color:#666;margin:0 0 10px">
3030
{% if article.modified != article.date %}
3131
Post updated by

theme/templates/blog.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h1 style="display:none">Blog Tutorials</h1>
2121
</div>
2222
<div class="c9">
2323
{% endif %}
24-
<h2 style="padding-top:0;margin-top:0"><a href="/blog/{{ a.slug }}.html">{{ a.title }}</a></h2>
24+
<h2 style="font-size:24px;padding-top:0;margin-top:0"><a href="/blog/{{ a.slug }}.html">{{ a.title }}</a></h2>
2525
<div style="font-size:12px;color:#666;margin:0 0 10px">
2626
{% if a.modified != a.date %}
2727
Post updated by
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
<a href="/learning-programming.html" class="lgi">Learning Programming</a>
3+
<a href="/why-use-python.html" class="lgi">Why use Python?</a>
4+
<a href="/python-programming-language.html" class="lgi">The Python Programming Language</a>
5+
<a href="/blog/python-basic-data-types-strings.html" class="lgi">Python Basic Data Types Tutorial: Strings</a>
6+
<a href="/application-programming-interfaces.html" class="lgi">APIs</a>

theme/templates/css/base.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)