How to index a pandas data frame starting at n?
问题 Is it possible to start the index from n in a pandas dataframe? I have some datasets saved as csv files, and would like to add the column index with the row number starting from where the last row number ended in the previous file. For example, for the first file I'm using the following code which works fine, so I got an output csv file with rows starting at 1 to 1048574, as expected: yellow_jan['index'] = range(1, len(yellow_jan) + 1) I would like to do same for the yellow_feb file, but