Skip to content

Commit

Permalink
chore(python): Fix docstring with_context (#6118)
Browse files Browse the repository at this point in the history
  • Loading branch information
zundertj committed Jan 8, 2023
1 parent 05447ab commit d6da86b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion py-polars/polars/internals/lazyframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -2518,7 +2518,8 @@ def with_context(self, other: LDF | list[LDF]) -> LDF:
│ null │
└──────┘
Fill nulls with the median from another dataframe
Fill nulls with the median from another dataframe:
>>> train_df = pl.DataFrame(
... {"feature_0": [-1.0, 0, 1], "feature_1": [-1.0, 0, 1]}
... ).lazy()
Expand Down

0 comments on commit d6da86b

Please sign in to comment.