Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a docstring error introduced in to_pandas() default dtype_backend change #4833

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion py/server/deephaven/pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def to_pandas(table: Table, cols: List[str] = None,
dtypes. Both "numpy_nullable" and "pyarrow" automatically convert Deephaven nulls to Pandas NA and enable
Pandas extension types. Extension types are needed to support types beyond NumPy's type system. Extension
types support operations such as properly mapping Java Strings to Python strings. default is "numpy_nullable".
conv_null (bool): when dtype_backend is not set, whether to check for Deephaven nulls in the data and
conv_null (bool): when dtype_backend is set to None, whether to check for Deephaven nulls in the data and
automatically replace them with pd.NA. default is True.
Returns:
Expand Down
Loading