@@ -40,7 +40,7 @@ PyArrow is an optional dependency of pandas that provides a wide range of supple
40
40
data types within the ` ExtensionArray ` interface
41
41
- Since pandas 2.0.0, all I/O readers have the option to return PyArrow-backed data types, and many methods
42
42
now utilize PyArrow compute functions to
43
- accelerate PyArrow-backed data in pandas, notably string and datetime types.
43
+ accelerate PyArrow-backed data in pandas, notibly string and datetime types.
44
44
45
45
As of pandas 2.0, one can feasibly utilize PyArrow as an alternative data representation to NumPy with advantages such as:
46
46
@@ -117,7 +117,7 @@ In[4]: %timeit ser_string.str.startswith("a")
117
117
118
118
### Immediate User Benefit 2: Nested Datatypes
119
119
120
- Currently, if you try storing ` dict ` s in a pandas ` Series ` , you will again get the horrendous ` object ` dtype:
120
+ Currently, if you try storing ` dict ` s in a pandas ` Series ` , you will again get the horrendeous ` object ` dtype:
121
121
``` python
122
122
In [6 ]: pd.Series([{' a' : 1 , ' b' : 2 }, {' a' : 2 , ' b' : 99 }])
123
123
Out[6 ]:
@@ -185,7 +185,6 @@ Additionally, if a user is installing pandas in an environment where wheels are
185
185
the user will need to also build Arrow C++ and related dependencies when installing from source. These environments include
186
186
187
187
- Alpine linux (commonly used as a base for Docker containers)
188
- - WASM (pyodide and pyscript)
189
188
- Python development versions
190
189
191
190
Lastly, pandas development and releases will need to be mindful of PyArrow's development and release cadance. For example when
0 commit comments