@@ -40,7 +40,7 @@ PyArrow is an optional dependency of pandas that provides a wide range of supple
4040 data types within the ` ExtensionArray ` interface
4141- Since pandas 2.0.0, all I/O readers have the option to return PyArrow-backed data types, and many methods
4242 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.
4444
4545As of pandas 2.0, one can feasibly utilize PyArrow as an alternative data representation to NumPy with advantages such as:
4646
@@ -117,7 +117,7 @@ In[4]: %timeit ser_string.str.startswith("a")
117117
118118### Immediate User Benefit 2: Nested Datatypes
119119
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:
121121``` python
122122In [6 ]: pd.Series([{' a' : 1 , ' b' : 2 }, {' a' : 2 , ' b' : 99 }])
123123Out[6 ]:
@@ -185,7 +185,6 @@ Additionally, if a user is installing pandas in an environment where wheels are
185185the user will need to also build Arrow C++ and related dependencies when installing from source. These environments include
186186
187187- Alpine linux (commonly used as a base for Docker containers)
188- - WASM (pyodide and pyscript)
189188- Python development versions
190189
191190Lastly, pandas development and releases will need to be mindful of PyArrow's development and release cadance. For example when
0 commit comments