rgwfuncs 0.0.5__py3-none-any.whl → 0.0.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- rgwfuncs/__init__.py +3 -2
- rgwfuncs/df_lib.py +209 -503
- {rgwfuncs-0.0.5.dist-info → rgwfuncs-0.0.6.dist-info}/METADATA +98 -1
- rgwfuncs-0.0.6.dist-info/RECORD +8 -0
- rgwfuncs-0.0.5.dist-info/RECORD +0 -8
- {rgwfuncs-0.0.5.dist-info → rgwfuncs-0.0.6.dist-info}/LICENSE +0 -0
- {rgwfuncs-0.0.5.dist-info → rgwfuncs-0.0.6.dist-info}/WHEEL +0 -0
- {rgwfuncs-0.0.5.dist-info → rgwfuncs-0.0.6.dist-info}/entry_points.txt +0 -0
- {rgwfuncs-0.0.5.dist-info → rgwfuncs-0.0.6.dist-info}/top_level.txt +0 -0
rgwfuncs/__init__.py
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
# This file is automatically generated
|
2
|
+
# Dynamically importing functions from modules
|
3
3
|
|
4
|
+
from .df_lib import append_columns, append_percentile_classification_column, append_ranged_classification_column, append_ranged_date_classification_column, append_rows, append_xgb_labels, append_xgb_logistic_regression_predictions, append_xgb_regression_predictions, bag_union_join, bottom_n_unique_values, cascade_sort, delete_rows, docs, drop_duplicates, drop_duplicates_retain_first, drop_duplicates_retain_last, filter_dataframe, filter_indian_mobiles, first_n_rows, from_raw_data, last_n_rows, left_join, limit_dataframe, load_data_from_path, load_data_from_query, load_data_from_sqlite_path, mask_against_dataframe, mask_against_dataframe_converse, numeric_clean, order_columns, print_correlation, print_dataframe, print_memory_usage, print_n_frequency_cascading, print_n_frequency_linear, rename_columns, retain_columns, right_join, send_data_to_email, send_data_to_slack, send_dataframe_via_telegram, top_n_unique_values, union_join, update_rows
|