Last active
December 20, 2015 20:59
-
-
Save Nagyman/6193955 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from trips.models import * | |
import matplotlib.pyplot as plt | |
counts = [] | |
for t in Trip.objects.published(): | |
counts.append(len(t.visited_countries.all())) | |
plt.hist(counts) | |
plt.title("Visited Countries") | |
plt.xlabel("Number of Countries") | |
plt.ylabel("Frequency") | |
plt.savefig('/Users/craign/visited_countries.png') | |
print "test" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment