I am reading many different data files into various pandas dataframes. The columns in these datafiles are separated by spaces. However, for each file, the number of spaces is different (for some of them, there is only one space, for others, there are two spaces and so on). Thus, every time I import the file, I have to manually go to that file and see the number of spaces that have been used and give those many number of spaces in sep
:
import pandas as pd
df = pd.read_csv('myfile.dat', sep = ' ')
Is there any way I can tell pandas to assume "any number of spaces" as the separator? Also, is there any way I can tell pandas to use either tab (\t
) or spaces as the separator?
Yes, you can use a simple regular expression like sep='\s+'
to denote one or more spaces.
You can also use the parameter skipinitialspace=True
which skips the leading spaces after any delimiter.
You can directly use delim_whitespace
import pandas as pd
df = pd.read_csv('myfile.dat', delim_whitespace = 1 )
One thing I found is if you use a unsupported separator. Pandas/Dask will have to use the Python engine instead of the C engine. This is a good deal slower.
来源:https://stackoverflow.com/questions/41235111/customizing-the-separator-in-pandas-read-csv