Avoiding Index Column in Saved CSV with Pandas
When saving a csv file after making modifications using Pandas, the default behavior is to include an index column. To avoid this, one can set the index parameter to False when using the to_csv() method.
To elaborate, consider the following sequence of commands:
pd.read_csv('C:/Path/to/file.csv', index_col = False)
This command reads a csv file and suppresses the index column.
df.to_csv('C:/Path/to/edited/file.csv', index=False)
This command saves the modified DataFrame df to a new csv file without the index column.
Technical Details
The index parameter in the to_csv() method controls whether the index column is included in the output csv. By setting it to False, the index is omitted.
Example
Suppose you have a DataFrame named df containing the following data:
Index | Value |
---|---|
0 | 10 |
1 | 20 |
2 | 30 |
Saving df with index:
df.to_csv('with_index.csv')
Output:
Index | Value |
---|---|
0 | 10 |
1 | 20 |
2 | 30 |
Saving df without index:
df.to_csv('without_index.csv', index=False)
Output:
Value |
---|
10 |
20 |
30 |
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3