Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 25, 2020 11:33
Show Gist options
  • Save computer-tutor/4d122799e05b7b1c918adef49324120b to your computer and use it in GitHub Desktop.
Save computer-tutor/4d122799e05b7b1c918adef49324120b to your computer and use it in GitHub Desktop.
import pandas as pd
import matplotlib.pyplot as plt
fig=plt.figure()
ax=fig.add_axes([0,0,1,1])
apps=['AngryBird','TeenTitan','MarvelComics',
'ColorMe','FunRun','CrazyTaxi','IgramPro',
'WAppPro', 'MathsForulas']
downloads=[197000,209000,414000,196000,
272000,311000,213000,455000,278000]
ax.bar(apps,downloads)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment