Guest User

Untitled

a guest
Jan 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. autos['price_dollar'].value_counts(dropna=False).sort_index(ascending = True)
  2. fig = plt.figure(figsize=(10,3))
  3. ax1 = fig.add_subplot(1,2,1)
  4. ax2 = fig.add_subplot(1,2,2)
  5.  
  6. ax1.boxplot(autos['price_dollar'])
  7. ax1.set_xlabel('price_dollar')
  8. ax2.boxplot(autos['odometer_km'])
  9. ax2.set_xlabel('odometer_km')
Add Comment
Please, Sign In to add comment