You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specifies what to do upon encountering a bad line (a line with too many fields).
344
344
Allowed values are :
345
345
346
-
- 'error', raise an ParserError when a bad line is encountered.
346
+
- 'error', raise a ParserError when a bad line is encountered.
347
347
- 'warn', print a warning when a bad line is encountered and skip that line.
348
348
- 'skip', skip bad lines without raising or warning when they are encountered.
349
349
@@ -3717,6 +3717,7 @@ The look and feel of Excel worksheets created from pandas can be modified using
3717
3717
3718
3718
* ``float_format`` : Format string for floating point numbers (default ``None``).
3719
3719
* ``freeze_panes`` : A tuple of two integers representing the bottommost row and rightmost column to freeze. Each of these parameters is one-based, so (1, 1) will freeze the first row and first column (default ``None``).
3720
+
* ``autofilter`` : A boolean indicating whether to add automatic filters to all columns (default ``False``).
In most cases, parsing strings to datetimes (with any of :func:`to_datetime`, :class:`DatetimeIndex`, or :class:`Timestamp`) will produce objects with microsecond ("us") unit. The exception to this rule is if your strings have nanosecond precision, in which case the result will have "ns" unit:
Previously, :func:`to_datetime` and :class:`DatetimeIndex` would always parse strings to "ns" unit. During pandas 2.x, :class:`Timestamp` could give any of "s", "ms", "us", or "ns" depending on the specificity of the input string.
256
+
244
257
.. _timeseries.converting.format:
245
258
246
259
Providing a format argument
@@ -379,6 +392,16 @@ We subtract the epoch (midnight at January 1, 1970 UTC) and then floor divide by
Another common way to perform this conversion is to convert directly to an integer dtype. Note that the exact integers this produces will depend on the specific unit
0 commit comments