Advertisement
Guest User

plot

a guest
Oct 6th, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. plt.ylabel('% of Group')
  2. plt.xlabel('Degree')
  3. plt.set_title('Degree Distribution by Sex')
  4. plt.legend((femFin[0], malFin[0]), ('Female', 'Male')
  5. plt.plot(femFin, 'r-')
  6. plt.plot(malFin, 'b-')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement