Config setting to convert objects to pyarrow strings
()
| 780 | |
| 781 | |
| 782 | def pyarrow_strings_enabled() -> bool: |
| 783 | """Config setting to convert objects to pyarrow strings""" |
| 784 | convert_string = dask.config.get("dataframe.convert-string") |
| 785 | if convert_string is None: |
| 786 | convert_string = True |
| 787 | return convert_string |
| 788 | |
| 789 | |
| 790 | def get_numeric_only_kwargs(numeric_only: bool | NoDefault) -> dict: |