Config setting to convert objects to pyarrow strings
()
| 774 | |
| 775 | |
| 776 | def pyarrow_strings_enabled() -> bool: |
| 777 | """Config setting to convert objects to pyarrow strings""" |
| 778 | convert_string = dask.config.get("dataframe.convert-string") |
| 779 | if convert_string is None: |
| 780 | convert_string = True |
| 781 | return convert_string |
| 782 | |
| 783 | |
| 784 | def get_numeric_only_kwargs(numeric_only: bool | NoDefault) -> dict: |