Dash-DataTable not displaying data

I am trying to make a simple data table from a csv file. The following code runs but then only displays the headers and none of the data. What am I missing in order for the data to display? It is a very large file, could this be an issue?

Hi @eambrioso

Do the table works if you omit the line:

df = df.loc[df["Season"] == '20192020']

:thinking:

:hushed: omg that solved it! I did that because I thought the data might to be too big so I thought a filter to only include one season of data. Thank you!!

1 Like

Happy to know that works :grinning: