
Want PyArrow dtypes in your Python Pandas data frame?
df = pd.read_csv(filename, dtype_backend='pyarrow')
The dtypes are double[pyarrow], int64[pyarrow], and string[pyarrow], not the normal NumPy ones.
Note: This is still experimental… but it’s also the future.
