You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We sometimes reference pandas and Polars handling null values differently in docs, but it's a bit scattered - I think we should:
only include it in the docstring if the function specifically modifies / counts/ drops null values (e.g. fill_null, null_count)
reference the page in those cases
I'm not sure we should be including Polars examples which includes 'nan' - the reason is that 'nan' is quite rare to encounter in Polars. Missing values are represented by null, and you'd only get 'nan' if you did something "illegal" like divide 0 by 0
My concern is that otherwise we distract from the main behaviour of the function in question
The text was updated successfully, but these errors were encountered:
We sometimes reference pandas and Polars handling null values differently in docs, but it's a bit scattered - I think we should:
I'm not sure we should be including Polars examples which includes 'nan' - the reason is that 'nan' is quite rare to encounter in Polars. Missing values are represented by
null
, and you'd only get'nan'
if you did something "illegal" like divide 0 by 0My concern is that otherwise we distract from the main behaviour of the function in question
The text was updated successfully, but these errors were encountered: