I m trying to use countplot with release date of movie in x axis where I need to use only the year to plot the graph.Please see the code and the graph below.
sns.countplot(x=pd.DatetimeIndex(movie['release date']).year.drop_duplicates(), data=movie)
The data is not plotted correctly and the years are merged even if i use rotation=45. Please help
Since there was no data presented, I got the data from this site and responded to it. The date and time data columns are converted to date format by pandas, and the year information is added as a new column based on that. Run countplot on that column.