Skip to content

Commit be026e6

Browse files
committed
update changelog
1 parent 9e7bc14 commit be026e6

File tree

4 files changed

+64
-2
lines changed

4 files changed

+64
-2
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
title: Data analysis
2+
category: page
3+
slug: data-analysis
4+
sortorder: 0917
5+
toc: False
6+
sidebartitle: Data analysis
7+
meta: Data analysis is a broad set of activities that involves cleaning, processing, transforming and understanding a data collection.
8+
9+
10+
# Data analysis
11+
Data analysis involves a broad set of activities to clean, process and
12+
transform a data collection to learn from it. Python is commonly used
13+
as a programming language to perform data analysis because many tools,
14+
such as [Jupyter Notebook](/jupyter-notebook.html),
15+
[pandas](/pandas.html) and [Bokeh](/bokeh.html), are written in Python
16+
and can be quickly applied rather than coding your own data analysis
17+
libraries from scratch.
18+
19+
20+
### Data analysis resources
21+
* The following series on data exploration uses Python as the
22+
implementation language while walking through various stages of
23+
how to analyze a data set.
24+
25+
* [Part 1](http://blog.districtdatalabs.com/data-exploration-with-python-1)
26+
gives insight into how you should think about data and clarify
27+
what you are looking to learn.
28+
* [Part 2](http://blog.districtdatalabs.com/data-exploration-with-python-2)
29+
explains categorization and transforming a data set into one that
30+
is easier to analyze.
31+
* [Part 3](http://blog.districtdatalabs.com/data-exploration-with-python-3)
32+
shows how to visualize the results of your data exploration.
33+
34+
* [The Python Data Science Handbook](https://jakevdp.github.io/PythonDataScienceHandbook/)
35+
is available to read for free online, although I also recommend
36+
buying the book as it is a great resource for learning the topic.
37+
38+
* [PyData TV](https://www.youtube.com/user/PyDataTV) contains all the
39+
videos from the PyData conference series. The conference talks are
40+
often given by professional data scientists and the developers who
41+
write these analysis libraries, so there is a wealth of information
42+
not necessarily captured anywhere else.
43+

content/pages/12-meta/01-change-log.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ on GitHub.
1717

1818
## 2017
1919
### September
20-
* Added new [minification](/minification.html) starter page.
20+
* Added new [minification](/minification.html) and
21+
[data analysis](/data-analysis.html) starter pages.
2122
* Modifying and favoring links to original sources rather than Medium links
2223
due to their new pop-ups that are really annoying for readers, especially
2324
when you're in the middle of trying to figure out a solution to a coding
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<h3>What else would you like to learn about Python and data?</h3>
2+
<div class="row">
3+
<div class="col-md-4">
4+
<div class="well select-next">
5+
{% include "choices/buttons/databases.html" %}
6+
</div>
7+
</div>
8+
<div class="col-md-4">
9+
<div class="well select-next">
10+
{% include "choices/buttons/no-sql-datastore.html" %}
11+
</div>
12+
</div>
13+
<div class="col-md-4">
14+
<div class="well select-next">
15+
{% include "choices/buttons/why-use-python.html" %}
16+
</div>
17+
</div>
18+
</div>

theme/templates/table-of-contents.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ <h4 class="toc-subsection">9.3 <a href="/no-sql-datastore.html">NoSQL</a></h4>
266266
<div class="toc"><a href="/apache-cassandra.html">Apache Cassandra</a></div>
267267
<div class="toc"><a href="/neo4j.html">Neo4j</a></div>
268268

269-
<h4 class="toc-subsection">9.4 <span class="soon">Data analysis</span></h4>
269+
<h4 class="toc-subsection">9.4 <a href="/data-analysis.html">Data analysis</a></h4>
270270
<div class="toc"><a href="/pandas.html">pandas</a></div>
271271
<div class="toc soon">NumPy</div>
272272
<div class="toc soon">SciPy</div>

0 commit comments

Comments
 (0)