Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. some_dict = {'total_area': 'площадь',
  2.             'last_price' : 'стоимость'}
  3.  
  4. for key in some_dict.keys():
  5.     fig = plot.figure(figsize = (8,4))
  6.     plot.xlabel('xlabel')
  7.     plot.ylabel('ylabel')
  8.     df[key].plot.box(subplots=False,sharex=False,sharey=False,title=some_dict[key])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement