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
- Added support for a ``chunksize`` parameter to ``to_sql`` function. This allows DataFrame to be written in chunks and avoid packet-size overflow errors (:issue:`8062`).
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.19.0.rst
+3-3
Original file line number
Diff line number
Diff line change
@@ -377,15 +377,15 @@ For ``MultiIndex``, values are dropped if any level is missing by default. Speci
377
377
378
378
.. _whatsnew_0190.gbq:
379
379
380
-
Google BigQuery Enhancements
380
+
Google BigQuery enhancements
381
381
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
382
382
383
383
- The :func:`read_gbq` method has gained the ``dialect`` argument to allow users to specify whether to use BigQuery's legacy SQL or BigQuery's standard SQL. See the `docs <https://pandas-gbq.readthedocs.io/en/latest/reading.html>`__ for more details (:issue:`13615`).
384
384
- The :func:`~DataFrame.to_gbq` method now allows the DataFrame column order to differ from the destination table schema (:issue:`11359`).
385
385
386
386
.. _whatsnew_0190.errstate:
387
387
388
-
Fine-grained numpy errstate
388
+
Fine-grained NumPy errstate
389
389
^^^^^^^^^^^^^^^^^^^^^^^^^^^
390
390
391
391
Previous versions of pandas would permanently silence numpy's ufunc error handling when ``pandas`` was imported. Pandas did this in order to silence the warnings that would arise from using numpy ufuncs on missing data, which are usually represented as ``NaN`` s. Unfortunately, this silenced legitimate warnings arising in non-pandas code in the application. Starting with 0.19.0, pandas will use the ``numpy.errstate`` context manager to silence these warnings in a more fine-grained manner, only around where these operations are actually used in the pandas code base. (:issue:`13109`, :issue:`13145`)
@@ -1185,7 +1185,7 @@ the result of calling :func:`read_csv` without the ``chunksize=`` argument
1185
1185
1186
1186
.. _whatsnew_0190.sparse:
1187
1187
1188
-
Sparse Changes
1188
+
Sparse changes
1189
1189
^^^^^^^^^^^^^^
1190
1190
1191
1191
These changes allow pandas to handle sparse data with more dtypes, and for work to make a smoother experience with data handling.
0 commit comments