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
Copy file name to clipboardExpand all lines: doc/source/user_guide/io.rst
-70
Original file line number
Diff line number
Diff line change
@@ -2111,8 +2111,6 @@ is ``None``. To explicitly force ``Series`` parsing, pass ``typ=series``
2111
2111
* ``convert_axes`` : boolean, try to convert the axes to the proper dtypes, default is ``True``
2112
2112
* ``convert_dates`` : a list of columns to parse for dates; If ``True``, then try to parse date-like columns, default is ``True``.
2113
2113
* ``keep_default_dates`` : boolean, default ``True``. If parsing dates, then parse the default date-like columns.
2114
-
* ``numpy`` : direct decoding to NumPy arrays. default is ``False``;
2115
-
Supports numeric data only, although labels may be non-numeric. Also note that the JSON ordering **MUST** be the same for each term if ``numpy=True``.
2116
2114
* ``precise_float`` : boolean, default ``False``. Set to enable usage of higher precision (strtod) function when decoding string to double values. Default (``False``) is to use fast but less precise builtin functionality.
2117
2115
* ``date_unit`` : string, the timestamp unit to detect if converting dates. Default
2118
2116
None. By default the timestamp precision will be detected, if this is not desired
@@ -2216,74 +2214,6 @@ Dates written in nanoseconds need to be read back in nanoseconds:
2216
2214
dfju = pd.read_json(json, date_unit="ns")
2217
2215
dfju
2218
2216
2219
-
The Numpy parameter
2220
-
+++++++++++++++++++
2221
-
2222
-
.. note::
2223
-
This param has been deprecated as of version 1.0.0 and will raise a ``FutureWarning``.
2224
-
2225
-
This supports numeric data only. Index and columns labels may be non-numeric, e.g. strings, dates etc.
2226
-
2227
-
If ``numpy=True`` is passed to ``read_json`` an attempt will be made to sniff
2228
-
an appropriate dtype during deserialization and to subsequently decode directly
2229
-
to NumPy arrays, bypassing the need for intermediate Python objects.
2230
-
2231
-
This can provide speedups if you are deserialising a large amount of numeric
0 commit comments