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
:ref:`Here <io.perf>` is an informal performance comparison for some of these IO methods.
41
40
@@ -1837,14 +1836,13 @@ with optional parameters:
1837
1836
1838
1837
.. csv-table::
1839
1838
:widths: 20, 150
1840
-
:delim: ;
1841
1839
1842
-
``split``; dict like {index -> [index], columns -> [columns], data -> [values]}
1843
-
``records``; list like [{column -> value}, ... , {column -> value}]
1844
-
``index``; dict like {index -> {column -> value}}
1845
-
``columns``; dict like {column -> {index -> value}}
1846
-
``values``; just the values array
1847
-
``table``; adhering to the JSON `Table Schema`_
1840
+
``split``, dict like {index -> [index]; columns -> [columns]; data -> [values]}
1841
+
``records``, list like [{column -> value}; ... ]
1842
+
``index``, dict like {index -> {column -> value}}
1843
+
``columns``, dict like {column -> {index -> value}}
1844
+
``values``, just the values array
1845
+
``table``, adhering to the JSON `Table Schema`_
1848
1846
1849
1847
* ``date_format`` : string, type of date conversion, 'epoch' for timestamp, 'iso' for ISO8601.
1850
1848
* ``double_precision`` : The number of decimal places to use when encoding floating point values, default 10.
@@ -2025,14 +2023,13 @@ is ``None``. To explicitly force ``Series`` parsing, pass ``typ=series``
2025
2023
2026
2024
.. csv-table::
2027
2025
:widths: 20, 150
2028
-
:delim: ;
2029
-
2030
-
``split``; dict like {index -> [index], columns -> [columns], data -> [values]}
2031
-
``records``; list like [{column -> value}, ... , {column -> value}]
2032
-
``index``; dict like {index -> {column -> value}}
2033
-
``columns``; dict like {column -> {index -> value}}
2034
-
``values``; just the values array
2035
-
``table``; adhering to the JSON `Table Schema`_
2026
+
2027
+
``split``, dict like {index -> [index]; columns -> [columns]; data -> [values]}
2028
+
``records``, list like [{column -> value} ...]
2029
+
``index``, dict like {index -> {column -> value}}
2030
+
``columns``, dict like {column -> {index -> value}}
2031
+
``values``, just the values array
2032
+
``table``, adhering to the JSON `Table Schema`_
2036
2033
2037
2034
2038
2035
* ``dtype`` : if True, infer dtypes, if a dict of column to dtype, then use those, if ``False``, then don't infer dtypes at all, default is True, apply only to the data.
0 commit comments