We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 142d184 commit d53ba13Copy full SHA for d53ba13
pandas/io/parsers.py
@@ -133,6 +133,14 @@
133
tupleize_cols: boolean, default False
134
Leave a list of tuples on columns as is (default is to convert to
135
a Multi Index on the columns)
136
+error_bad_lines: boolean, default True
137
+ Lines with too many fields (e.g. a csv line with too many commas) will by
138
+ default cause an exception to be raised, and no DataFrame will be returned.
139
+ If False, then these "bad lines" will dropped from the DataFrame that is
140
+ returned. (Only valid with C parser).
141
+warn_bad_lines: boolean, default True
142
+ If error_bad_lines is False, and warn_bad_lines is True, a warning for each
143
+ "bad line" will be output. (Only valid with C parser).
144
145
Returns
146
-------
0 commit comments