Python Forum

Full Version: Seaborn and Pandas
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi All,

I am working with a database that contains dates already in the datetime form 'year-month-day'. This database contains data about most days in every year from 1996 to 2020, and I am using 'seaborn.histplot( data=data, x='date')' to visualize it. It plots the 'count' vs. 'dates' (years ranging from 1996 to 2020). However, I am wondering if it is possible to visualize only a range of the dates using seaborn. For instance, applying 'histplot' to years spanning 1996 to 2008 without having to separate into two dataframes. Please, let me know if you have any suggestions, and if anything above is unclear. Your help will greatly appreciated.

Thank you for your time!