I have a dataframe in one file I am writing to a csv using pd.to_csv() and then in another file I am opening that csv into a dataframe using pd.read_csv() but they are different sizes? The number of rows it the dataframe is larger when I am reading the csv back in the other file. Any thoughts on what this could be?
So here the snippet of code in question. I cleared the csv before running again and the shape of the df before writing to the csv was (32636, 28). Opening it up the shape is (68450, 29).
I am only running this on 2 files currently.
edit:
The json is twitter api data if that helps.