I am using a large data set that, it contains homelessness numbers in NYC from 08/21/2013 to 01/16/2024 and when I graph it normally it gives a unreadable mess due to the amount of dates. I tried using various things to remove most of the dates such as "set_xticks" and others but I keep getting this error message:
"'DataFrame' object has no attribute 'set_xticks'"
my code is the following:
"plt.figure(figsize=(10,10))
sns.lineplot(data=homelessness_data, x='Date of Census', y='Total Individuals in Shelter')
homelessness_data.set_xticks(['01/01/2013', '01/01/2014', '01/01/2015', '01/01/2016', '01/01/2017', '01/01/2018','01/01/2019', '01/01/2020', '01/01/2021','01/01/2022', '01/01/2023' ])" I have read through multiple stack overflow stuff but it still isnt working.
can anyone help?
I attached the CSV im using in case that helps. I can also answer any following questions one may have.
"'DataFrame' object has no attribute 'set_xticks'"
my code is the following:
"plt.figure(figsize=(10,10))
sns.lineplot(data=homelessness_data, x='Date of Census', y='Total Individuals in Shelter')
homelessness_data.set_xticks(['01/01/2013', '01/01/2014', '01/01/2015', '01/01/2016', '01/01/2017', '01/01/2018','01/01/2019', '01/01/2020', '01/01/2021','01/01/2022', '01/01/2023' ])" I have read through multiple stack overflow stuff but it still isnt working.
can anyone help?
I attached the CSV im using in case that helps. I can also answer any following questions one may have.
Attached Files