Skip to content

Commit fabf9bc

Browse files
committed
post-lecture fixes
1 parent 02f7482 commit fabf9bc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

classes/12_matplotlib/lecture_12.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Like most of the libraries used in our "special topics" lectures, matplotlib doe
1010

1111
#### Anaconda
1212

13-
Consider installing [Anaconda](http://docs.continuum.io/anaconda/install.html) instead. Anaconda is Python packaged with over 100 tools and libraries that you will want (This includes matplotlib and everything else we will use in this course.)
13+
Consider installing [Anaconda](http://docs.continuum.io/anaconda/install.html) instead. Anaconda is Python packaged with hundreds of tools and libraries that you will want (This includes matplotlib and everything else we will use in this course.)
1414

1515
## Outline
1616

@@ -205,7 +205,7 @@ You can use `bar` to create vertical bar chart:
205205

206206
Or `barh` to create a horizontal bar chart:
207207

208-
>>> plt.bar(x, y)
208+
>>> plt.barh(x, y)
209209
>>> plt.show()
210210

211211
![Simple Horizontal Bar Chart](../../resources/barh_plot_simple_1.png)

0 commit comments

Comments
 (0)