Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for column in data:
- column = (['year', 'month', 'weekday'])
- (data.query('locality_name == "Санкт-Петербург" and cityCenters_nearest_km == 3')
- .pivot_table(index=column, values= 'last_price', aggfunc=aggfunc, fill_value=fill_value)
- .plot.bar(figsize=figsize, grid=grid, **kwargs))
- plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement