Retrieve delimiter infered by read_csv in pandas

后端 未结 3 840
無奈伤痛
無奈伤痛 2021-02-13 04:18

When using the configuration for automatic separator detection to read csv files (pd.read_csv(file_path, sep=None)), pandas tries to infer the delimiter (or separat

3条回答
  •  [愿得一人]
    2021-02-13 05:02

    If all you want to do is detect the dialect of a csv (without loading in your data), you can use the inbuilt csv.Sniffer standard:

    The Sniffer class is used to deduce the format of a CSV file.

    In particular, the sniff method:

    sniff(sample, delimiters=None)
    

    Analyze the given sample and return a Dialect subclass reflecting the parameters found. If the optional delimiters parameter is given, it is interpreted as a string containing possible valid delimiter characters.

    Here's an example of its usage:

    with open('example.csv', 'r') as csvfile:
        dialect = csv.Sniffer().sniff(csvfile.readline())
        print(dialect.delimiter)
    

提交回复
热议问题