Guest User

Untitled

a guest
Nov 20th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. sns.regplot(y=d1.Women_Particip_Net_2005, x=res.fittedvalues, fit_reg=True)
  2. plt.xlabel("Predicted Women Participation Yr 2005")
  3. plt.ylabel("Original Women Participation Yr 2005")
  4. plt.title("Relationship between Predicted and Original Women Participation Yr 2005")
  5. plt.xscale('log')
  6. plt.yscale('log')
  7.  
  8. plt.scatter(res.fittedvalues, d1.Women_Particip_Net_2005)
  9. plt.xlabel("Predicted Women Participation Yr 2005")
  10. plt.ylabel("Original Women Participation Yr 2005")
  11. plt.title("Relationship between Predicted and Original Women Participation Yr 2005")
  12. plt.xscale('log')
  13. plt.yscale('log')
Add Comment
Please, Sign In to add comment