So I had wrote a line of code which displays all values of a column. For example
tender_count = df.groupby(["Age Ranges"]).count()
when I gave it the .head()
function it didn't display all the age ranges within the data. I want to know how I can display all the rows. If I am lacking in clarity I apologize in advance, this is my first post here and the other lines people posted to do this didn't work for me.