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.
42
41
@@ -1838,14 +1837,13 @@ with optional parameters:
1838
1837
1839
1838
.. csv-table::
1840
1839
:widths: 20, 150
1841
-
:delim: ;
1842
1840
1843
-
``split``; dict like {index -> [index], columns -> [columns], data -> [values]}
1844
-
``records``; list like [{column -> value}, ... , {column -> value}]
1845
-
``index``; dict like {index -> {column -> value}}
1846
-
``columns``; dict like {column -> {index -> value}}
1847
-
``values``; just the values array
1848
-
``table``; adhering to the JSON `Table Schema`_
1841
+
``split``, dict like {index -> [index]; columns -> [columns]; data -> [values]}
1842
+
``records``, list like [{column -> value}; ... ]
1843
+
``index``, dict like {index -> {column -> value}}
1844
+
``columns``, dict like {column -> {index -> value}}
1845
+
``values``, just the values array
1846
+
``table``, adhering to the JSON `Table Schema`_
1849
1847
1850
1848
* ``date_format`` : string, type of date conversion, 'epoch' for timestamp, 'iso' for ISO8601.
1851
1849
* ``double_precision`` : The number of decimal places to use when encoding floating point values, default 10.
@@ -2033,14 +2031,13 @@ is ``None``. To explicitly force ``Series`` parsing, pass ``typ=series``
2033
2031
2034
2032
.. csv-table::
2035
2033
:widths: 20, 150
2036
-
:delim: ;
2037
-
2038
-
``split``; dict like {index -> [index], columns -> [columns], data -> [values]}
2039
-
``records``; list like [{column -> value}, ... , {column -> value}]
2040
-
``index``; dict like {index -> {column -> value}}
2041
-
``columns``; dict like {column -> {index -> value}}
2042
-
``values``; just the values array
2043
-
``table``; adhering to the JSON `Table Schema`_
2034
+
2035
+
``split``, dict like {index -> [index]; columns -> [columns]; data -> [values]}
2036
+
``records``, list like [{column -> value} ...]
2037
+
``index``, dict like {index -> {column -> value}}
2038
+
``columns``, dict like {column -> {index -> value}}
2039
+
``values``, just the values array
2040
+
``table``, adhering to the JSON `Table Schema`_
2044
2041
2045
2042
2046
2043
* ``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