@ASHISH_17 wrote:
I want to pool the data year wise.
By using the below code I am able to pool the data month or daywise, but unable to pool for year wise. As I want to see the trend year wise.train[‘mm_pickup’]=train.pickup_datetime.dt.month.astype(np.int8)
plt.figure(figsize=(12,2))
month_wise=train.groupby(‘mm_pickup’).agg({‘id’:‘count’}).reset_index()
sns.barplot(x=‘mm_pickup’,y=‘id’,data=month_wise)
plt.xlabel(‘Month wise pick up’)
plt.ylabel(‘no of counts’)
plt.xticks(range(0,7),mm_names[:6])
plt.title(‘Monthly pick up’)
passI want the plot to be a line plot so the trend is cleaely visible.
Posts: 1
Participants: 1