Skip to content

Commit 383c4db

Browse files
committed
move to may 26
1 parent 75619bf commit 383c4db

File tree

8 files changed

+66
-9
lines changed

8 files changed

+66
-9
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
title: pandas
2+
category: page
3+
slug: pandas
4+
sortorder: 0918
5+
toc: False
6+
sidebartitle: pandas
7+
meta: The Python Data Analysis Library (pandas) is a data structures and analysis library.
8+
9+
10+
# pandas
11+
The [Python Data Analysis Library (pandas)](http://pandas.pydata.org/)
12+
is a data structures and analysis library.
13+
14+
<a href="http://pandas.pydata.org/" style="border: none;"><img src="/img/logos/pandas.png" width="100%" alt="Python Data Analysis Library pandas project logo." class="technical-diagram" /></a>
15+
16+
17+
### pandas resources
18+
* [Intro to pandas data structures](http://www.gregreda.com/2013/10/26/intro-to-pandas-data-structures/),
19+
[working with pandas data frames](http://www.gregreda.com/2013/10/26/working-with-pandas-dataframes/)
20+
and
21+
[Using pandas on the MovieLens dataset](http://www.gregreda.com/2013/10/26/using-pandas-on-the-movielens-dataset/)
22+
is a well-written three-part introduction to pandas blog series that
23+
builds on itself as the reader works from the first through the third
24+
post.
25+
26+
* [pandas exercises](https://github.com/guipsamora/pandas_exercises) is
27+
a GitHub repository with Jupyter Notebooks that let you practice
28+
sorting, filtering, visualizing, grouping, merging and more with pandas.
29+
30+
* [Modern pandas](https://tomaugspurger.github.io/modern-1.html) is the
31+
first part in a well-written seven-part introductory series.
32+

content/posts/170524-bar-charts-bokeh.markdown renamed to content/posts/170526-bar-charts-bokeh.markdown

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
1-
title: Building Bar Charts with Bokeh, Flask and Python 3
2-
slug: bar-charts-bokeh-flask-python-3
3-
meta: How to build bar charts with the Bokeh data visualization library, Flask and Pyton 3.
1+
title: Building Responsive Bar Charts with Bokeh, Flask and Python 3
2+
slug: responsive-bar-charts-bokeh-flask-python-3
3+
meta: How to build responsive bar charts with the Bokeh data visualization library, Flask and Pyton 3.
44
category: post
5-
date: 2017-05-24
6-
modified: 2017-05-24
7-
headerimage: /img/170524-bar-charts-bokeh-flask/header.jpg
5+
date: 2017-05-26
6+
modified: 2017-05-26
7+
headerimage: /img/170526-bar-charts-bokeh-flask/header.jpg
88
headeralt: Python, Flask and Bokeh logos.
99

1010

1111
[Bokeh](/bokeh.html) is a powerful open source Python library that allows
1212
developers to generate JavaScript data visualizations for their web
13-
applications *without writing any JavaScript*. Let's use the
13+
applications *without writing any JavaScript*. With Bokeh we can create
14+
incredibly varied visualizations, or traditional ones like the following
15+
bar chart.
16+
17+
<img src="/img/170526-bar-charts-bokeh-flask/bar-chart-64.png" width="100%" class="technical-diagram img-rounded" style="border:1px solid #aaa" alt="Responsive bar chart with 64 bars.">
18+
19+
20+
Let's use the
1421
[Flask](/flask.html) [web framework](/web-frameworks.html) with Bokeh to
1522
create custom bar charts in a Python web app.
1623

@@ -62,7 +69,7 @@ source barchart/bin/activate
6269

6370
The command prompt will change after activating the virtualenv:
6471

65-
<img src="/img/170524-bar-charts-bokeh-flask/activate-virtualenv.png" width="100%" class="technical-diagram img-rounded" style="border:1px solid #aaa">
72+
<img src="/img/170526-bar-charts-bokeh-flask/activate-virtualenv.png" width="100%" class="technical-diagram img-rounded" style="border:1px solid #aaa" alt="Activating our Python virtual environment on the command line.">
6673

6774
Keep in mind that you need to activate the virtualenv in every new terminal
6875
window that you want this virtualenv to be used for your project.
@@ -166,6 +173,6 @@ on Twitter
166173
or [@mattmakai](https://twitter.com/mattmakai).
167174

168175
See something wrong in this blog post? Fork
169-
[this page's source on GitHub](https://github.com/mattmakai/fullstackpython.com/blob/master/content/posts/170524-bar-charts-bokeh.markdown)
176+
[this page's source on GitHub](https://github.com/mattmakai/fullstackpython.com/blob/master/content/posts/170526-bar-charts-bokeh.markdown)
170177
and submit a pull request.
171178

static/img/170524-bar-charts-bokeh-flask/activate-virtualenv.png renamed to static/img/170526-bar-charts-bokeh-flask/activate-virtualenv.png

File renamed without changes.
129 KB
Loading
File renamed without changes.

static/img/logos/pandas.png

22.6 KB
Loading

theme/templates/blog/bar-charts-bokeh-flask-python-3.html renamed to theme/templates/blog/responsive-bar-charts-bokeh-flask-python-3.html

File renamed without changes.
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>

0 commit comments

Comments
 (0)