-
Notifications
You must be signed in to change notification settings - Fork 164
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
update order col #1123
update order col #1123
Conversation
@@ -466,7 +467,7 @@ def _update_helper(self, df_series_clean: Series, profile: dict) -> None: | |||
Update col profile properties with clean dataset and its known null parameters. | |||
|
|||
:param df_series_clean: df series with nulls removed | |||
:type df_series_clean: pandas.core.series.Series | |||
:type df_series_clean: polars.series.series.Series |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:type df_series_clean: polars.series.series.Series | |
:type df_series_clean: polars.Series |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I put polars.series.series.Series since when you get the type of any polars series it returns <class 'polars.series.series.Series'>. However if you think I should change it to polars.Series still happy to do so.
@@ -478,10 +479,13 @@ def update(self, df_series: Series) -> OrderColumn: | |||
Update the column profile. | |||
|
|||
:param df_series: df series | |||
:type df_series: pandas.core.series.Series | |||
:type df_series: polars.series.series.Series |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:type df_series: polars.series.series.Series | |
:type df_series: polars.Series |
Head branch was pushed to by a user without write access
* update order col * fix pandas df in update * update types in comments
* update order col * fix pandas df in update * update types in comments
* update order col * fix pandas df in update * update types in comments
* update order col * fix pandas df in update * update types in comments
* update order col * fix pandas df in update * update types in comments
No description provided.