snowpark-connect 0.24.0__py3-none-any.whl → 0.25.0__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.
Potentially problematic release.
This version of snowpark-connect might be problematic. Click here for more details.
- snowflake/snowpark_connect/column_name_handler.py +116 -4
- snowflake/snowpark_connect/config.py +13 -0
- snowflake/snowpark_connect/constants.py +0 -29
- snowflake/snowpark_connect/dataframe_container.py +6 -0
- snowflake/snowpark_connect/execute_plan/map_execution_command.py +56 -1
- snowflake/snowpark_connect/expression/literal.py +13 -2
- snowflake/snowpark_connect/expression/map_cast.py +5 -8
- snowflake/snowpark_connect/expression/map_sql_expression.py +23 -1
- snowflake/snowpark_connect/expression/map_udf.py +26 -8
- snowflake/snowpark_connect/expression/map_unresolved_attribute.py +199 -15
- snowflake/snowpark_connect/expression/map_unresolved_extract_value.py +44 -16
- snowflake/snowpark_connect/expression/map_unresolved_function.py +825 -353
- snowflake/snowpark_connect/expression/map_unresolved_star.py +3 -2
- snowflake/snowpark_connect/hidden_column.py +39 -0
- snowflake/snowpark_connect/includes/jars/hadoop-client-api-trimmed-3.3.4.jar +0 -0
- snowflake/snowpark_connect/includes/jars/{hadoop-client-api-3.3.4.jar → spark-connect-client-jvm_2.12-3.5.6.jar} +0 -0
- snowflake/snowpark_connect/relation/map_column_ops.py +17 -4
- snowflake/snowpark_connect/relation/map_extension.py +52 -11
- snowflake/snowpark_connect/relation/map_join.py +258 -62
- snowflake/snowpark_connect/relation/map_sql.py +88 -11
- snowflake/snowpark_connect/relation/map_udtf.py +4 -2
- snowflake/snowpark_connect/relation/read/map_read.py +3 -3
- snowflake/snowpark_connect/relation/read/map_read_jdbc.py +1 -1
- snowflake/snowpark_connect/relation/read/map_read_json.py +8 -1
- snowflake/snowpark_connect/relation/read/map_read_table.py +1 -9
- snowflake/snowpark_connect/relation/read/reader_config.py +3 -1
- snowflake/snowpark_connect/relation/write/map_write.py +62 -53
- snowflake/snowpark_connect/resources_initializer.py +29 -1
- snowflake/snowpark_connect/server.py +18 -3
- snowflake/snowpark_connect/type_mapping.py +29 -25
- snowflake/snowpark_connect/typed_column.py +14 -0
- snowflake/snowpark_connect/utils/artifacts.py +23 -0
- snowflake/snowpark_connect/utils/context.py +6 -1
- snowflake/snowpark_connect/utils/scala_udf_utils.py +588 -0
- snowflake/snowpark_connect/utils/telemetry.py +6 -17
- snowflake/snowpark_connect/utils/udf_helper.py +2 -0
- snowflake/snowpark_connect/utils/udf_utils.py +38 -7
- snowflake/snowpark_connect/utils/udtf_utils.py +17 -3
- snowflake/snowpark_connect/version.py +1 -1
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/METADATA +1 -1
- snowpark_connect-0.25.0.dist-info/RECORD +477 -0
- snowflake/snowpark_connect/includes/jars/scala-compiler-2.12.18.jar +0 -0
- snowflake/snowpark_connect/includes/jars/spark-kubernetes_2.12-3.5.6.jar +0 -0
- snowflake/snowpark_connect/includes/jars/spark-mllib_2.12-3.5.6.jar +0 -0
- snowflake/snowpark_connect/includes/jars/spark-streaming_2.12-3.5.6.jar +0 -0
- snowflake/snowpark_connect/includes/python/pyspark/errors/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/errors/tests/test_errors.py +0 -60
- snowflake/snowpark_connect/includes/python/pyspark/ml/deepspeed/tests/test_deepspeed_distributor.py +0 -306
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_classification.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_evaluation.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_feature.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_function.py +0 -114
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_pipeline.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_summarizer.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_tuning.py +0 -46
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_classification.py +0 -238
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_evaluation.py +0 -194
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_feature.py +0 -156
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_pipeline.py +0 -184
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_summarizer.py +0 -78
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_tuning.py +0 -292
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_data_loader.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_distributor.py +0 -152
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_algorithms.py +0 -456
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_base.py +0 -96
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_dl_util.py +0 -186
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_evaluation.py +0 -77
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_feature.py +0 -401
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_functions.py +0 -528
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_image.py +0 -82
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_linalg.py +0 -409
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_model_cache.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_param.py +0 -441
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_persistence.py +0 -546
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_pipeline.py +0 -71
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_stat.py +0 -52
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_training_summary.py +0 -494
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_util.py +0 -85
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_wrapper.py +0 -138
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_basic.py +0 -151
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_nested.py +0 -97
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_pipeline.py +0 -143
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tuning.py +0 -551
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_basic.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_nested.py +0 -96
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_pipeline.py +0 -142
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_data_loader.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_distributor.py +0 -561
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_log_communication.py +0 -172
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_algorithms.py +0 -353
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_feature.py +0 -192
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_linalg.py +0 -680
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_stat.py +0 -206
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_streaming_algorithms.py +0 -471
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_util.py +0 -108
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/accessors.py +0 -1281
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/functions.py +0 -203
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/utils.py +0 -202
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_any_all.py +0 -177
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_apply_func.py +0 -575
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_binary_ops.py +0 -235
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_combine.py +0 -653
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_compute.py +0 -463
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_corrwith.py +0 -86
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cov.py +0 -151
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cumulative.py +0 -139
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_describe.py +0 -458
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_eval.py +0 -86
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_melt.py +0 -202
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_missing_data.py +0 -520
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_pivot.py +0 -361
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_any_all.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_apply_func.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_binary_ops.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_combine.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_compute.py +0 -60
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_corrwith.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cov.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cumulative.py +0 -90
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_describe.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_eval.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_melt.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_missing_data.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_pivot.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_base.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_binary_ops.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_boolean_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_categorical_ops.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_complex_ops.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_date_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_datetime_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_null_ops.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_arithmetic.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_reverse.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_string_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_timedelta_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_udt_ops.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/testing_utils.py +0 -226
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_align.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_basic_slow.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_cov_corrwith.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_frame.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_series.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_index.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_series.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_frame.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_series.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_attrs.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_constructor.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_conversion.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reindexing.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reshaping.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_spark.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_take.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_time_series.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_truncate.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_aggregate.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_apply_func.py +0 -41
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_cumulative.py +0 -67
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_describe.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_groupby.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_head_tail.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_index.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_missing_data.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_split_apply.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_stat.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_align.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_base.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_category.py +0 -73
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_datetime.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_indexing.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reindex.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_rename.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reset_index.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_timedelta.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/test_parity_io.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_matplotlib.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_plotly.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_matplotlib.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_plotly.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_all_any.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_arg_ops.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_of.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_type.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_compute.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_conversion.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_cumulative.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_index.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_missing_data.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_series.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_sort.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_stat.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_categorical.py +0 -66
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_config.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_csv.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_conversion.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_spark_io.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_default_index.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ewm.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_expanding.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_extension.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_frame_spark.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_generic_functions.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexing.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexops_spark.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_internal.py +0 -41
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_namespace.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_numpy_compat.py +0 -60
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_expanding.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_rolling.py +0 -84
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_repr.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_resample.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_reshape.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_rolling.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_scalars.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_conversion.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_datetime.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_string.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_spark_functions.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_sql.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_stats.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_typedef.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_utils.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_window.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_base.py +0 -107
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_binary_ops.py +0 -224
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_boolean_ops.py +0 -825
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_categorical_ops.py +0 -562
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_complex_ops.py +0 -368
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_date_ops.py +0 -257
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_datetime_ops.py +0 -260
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_null_ops.py +0 -178
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_arithmetic.py +0 -184
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_ops.py +0 -497
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_reverse.py +0 -140
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_string_ops.py +0 -354
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_timedelta_ops.py +0 -219
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_udt_ops.py +0 -192
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/testing_utils.py +0 -228
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_align.py +0 -118
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_basic_slow.py +0 -198
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_cov_corrwith.py +0 -181
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_frame.py +0 -103
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_series.py +0 -141
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_index.py +0 -109
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_series.py +0 -136
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_frame.py +0 -125
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_series.py +0 -217
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_attrs.py +0 -384
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_constructor.py +0 -598
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_conversion.py +0 -73
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reindexing.py +0 -869
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reshaping.py +0 -487
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_spark.py +0 -309
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_take.py +0 -156
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_time_series.py +0 -149
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_truncate.py +0 -163
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_aggregate.py +0 -311
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_apply_func.py +0 -524
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_cumulative.py +0 -419
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_describe.py +0 -144
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_groupby.py +0 -979
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_head_tail.py +0 -234
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_index.py +0 -206
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_missing_data.py +0 -421
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_split_apply.py +0 -187
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_stat.py +0 -397
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_align.py +0 -100
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_base.py +0 -2743
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_category.py +0 -484
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_datetime.py +0 -276
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_indexing.py +0 -432
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reindex.py +0 -310
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_rename.py +0 -257
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reset_index.py +0 -160
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_timedelta.py +0 -128
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/test_io.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot.py +0 -170
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_matplotlib.py +0 -547
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_plotly.py +0 -285
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot.py +0 -106
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_matplotlib.py +0 -409
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_plotly.py +0 -247
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_all_any.py +0 -105
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_arg_ops.py +0 -197
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_of.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_type.py +0 -227
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_compute.py +0 -634
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_conversion.py +0 -88
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_cumulative.py +0 -139
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_index.py +0 -475
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_missing_data.py +0 -265
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_series.py +0 -818
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_sort.py +0 -162
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_stat.py +0 -780
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_categorical.py +0 -741
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_config.py +0 -160
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_csv.py +0 -453
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_conversion.py +0 -281
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_spark_io.py +0 -487
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_default_index.py +0 -109
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ewm.py +0 -434
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_expanding.py +0 -253
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_extension.py +0 -152
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_frame_spark.py +0 -162
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_generic_functions.py +0 -234
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexing.py +0 -1339
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexops_spark.py +0 -82
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_internal.py +0 -124
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_namespace.py +0 -638
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_numpy_compat.py +0 -200
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames.py +0 -1355
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby.py +0 -655
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_expanding.py +0 -113
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_rolling.py +0 -118
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_repr.py +0 -192
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_resample.py +0 -346
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_reshape.py +0 -495
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_rolling.py +0 -263
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_scalars.py +0 -59
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_conversion.py +0 -85
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_datetime.py +0 -364
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_string.py +0 -362
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_spark_functions.py +0 -46
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_sql.py +0 -123
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_stats.py +0 -581
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_typedef.py +0 -447
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_utils.py +0 -301
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_window.py +0 -465
- snowflake/snowpark_connect/includes/python/pyspark/resource/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/resource/tests/test_resources.py +0 -83
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_artifact.py +0 -420
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_client.py +0 -358
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach_batch.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_listener.py +0 -116
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_streaming.py +0 -35
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_basic.py +0 -3612
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_column.py +0 -1042
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_function.py +0 -2381
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_plan.py +0 -1060
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow.py +0 -163
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_map.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_python_udf.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_catalog.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_column.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_conf.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_dataframe.py +0 -96
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_datasources.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_errors.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_functions.py +0 -59
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_group.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_cogrouped_map.py +0 -59
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map.py +0 -74
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map_with_state.py +0 -62
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_map.py +0 -58
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf.py +0 -70
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_grouped_agg.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_scalar.py +0 -68
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_window.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_readwriter.py +0 -46
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_serde.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_types.py +0 -100
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udf.py +0 -100
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udtf.py +0 -163
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_session.py +0 -181
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_utils.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_cogrouped_map.py +0 -623
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map.py +0 -869
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map_with_state.py +0 -342
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_map.py +0 -436
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf.py +0 -363
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_grouped_agg.py +0 -592
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_scalar.py +0 -1503
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints.py +0 -392
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints_with_future_annotations.py +0 -375
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_window.py +0 -411
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming.py +0 -401
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach.py +0 -295
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach_batch.py +0 -106
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_listener.py +0 -558
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow.py +0 -1346
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_map.py +0 -182
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_python_udf.py +0 -202
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_catalog.py +0 -503
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_column.py +0 -225
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_conf.py +0 -83
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_context.py +0 -201
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_dataframe.py +0 -1931
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_datasources.py +0 -256
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_errors.py +0 -69
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_functions.py +0 -1349
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_group.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_pandas_sqlmetrics.py +0 -68
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_readwriter.py +0 -283
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_serde.py +0 -155
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_session.py +0 -412
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_types.py +0 -1581
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf.py +0 -961
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf_profiler.py +0 -165
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udtf.py +0 -1456
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_utils.py +0 -1686
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_context.py +0 -184
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_dstream.py +0 -706
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_kinesis.py +0 -118
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_listener.py +0 -160
- snowflake/snowpark_connect/includes/python/pyspark/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_appsubmit.py +0 -306
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_broadcast.py +0 -196
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_conf.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_context.py +0 -346
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_daemon.py +0 -89
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_install_spark.py +0 -124
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_join.py +0 -69
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_memory_profiler.py +0 -167
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_pin_thread.py +0 -194
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_profiler.py +0 -168
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_rdd.py +0 -939
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddbarrier.py +0 -52
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddsampler.py +0 -66
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_readwrite.py +0 -368
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_serializers.py +0 -257
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_shuffle.py +0 -267
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_stage_sched.py +0 -153
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_statcounter.py +0 -130
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_taskcontext.py +0 -350
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_util.py +0 -97
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_worker.py +0 -271
- snowpark_connect-0.24.0.dist-info/RECORD +0 -898
- {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-connect +0 -0
- {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-session +0 -0
- {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-submit +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/WHEEL +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE-binary +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE.txt +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/NOTICE-binary +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/top_level.txt +0 -0
|
@@ -1,397 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
3
|
-
# contributor license agreements. See the NOTICE file distributed with
|
|
4
|
-
# this work for additional information regarding copyright ownership.
|
|
5
|
-
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
6
|
-
# (the "License"); you may not use this file except in compliance with
|
|
7
|
-
# the License. You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
-
# See the License for the specific language governing permissions and
|
|
15
|
-
# limitations under the License.
|
|
16
|
-
#
|
|
17
|
-
from distutils.version import LooseVersion
|
|
18
|
-
import unittest
|
|
19
|
-
|
|
20
|
-
import numpy as np
|
|
21
|
-
import pandas as pd
|
|
22
|
-
|
|
23
|
-
from pyspark import pandas as ps
|
|
24
|
-
from pyspark.testing.pandasutils import ComparisonTestBase
|
|
25
|
-
from pyspark.testing.sqlutils import SQLTestUtils
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
class GroupbyStatMixin:
|
|
29
|
-
@property
|
|
30
|
-
def pdf(self):
|
|
31
|
-
return pd.DataFrame(
|
|
32
|
-
{
|
|
33
|
-
"A": [1, 2, 1, 2],
|
|
34
|
-
"B": [3.1, 4.1, 4.1, 3.1],
|
|
35
|
-
"C": ["a", "b", "b", "a"],
|
|
36
|
-
"D": [True, False, False, True],
|
|
37
|
-
}
|
|
38
|
-
)
|
|
39
|
-
|
|
40
|
-
@property
|
|
41
|
-
def psdf(self):
|
|
42
|
-
return ps.from_pandas(self.pdf)
|
|
43
|
-
|
|
44
|
-
# TODO: All statistical functions should leverage this utility
|
|
45
|
-
def _test_stat_func(self, func, check_exact=True):
|
|
46
|
-
pdf, psdf = self.pdf, self.psdf
|
|
47
|
-
for p_groupby_obj, ps_groupby_obj in [
|
|
48
|
-
# Against DataFrameGroupBy
|
|
49
|
-
(pdf.groupby("A"), psdf.groupby("A")),
|
|
50
|
-
# Against DataFrameGroupBy with an aggregation column of string type
|
|
51
|
-
(pdf.groupby("A")[["C"]], psdf.groupby("A")[["C"]]),
|
|
52
|
-
# Against SeriesGroupBy
|
|
53
|
-
(pdf.groupby("A")["B"], psdf.groupby("A")["B"]),
|
|
54
|
-
]:
|
|
55
|
-
self.assert_eq(
|
|
56
|
-
func(p_groupby_obj).sort_index(),
|
|
57
|
-
func(ps_groupby_obj).sort_index(),
|
|
58
|
-
check_exact=check_exact,
|
|
59
|
-
)
|
|
60
|
-
|
|
61
|
-
@unittest.skipIf(
|
|
62
|
-
LooseVersion(pd.__version__) >= LooseVersion("2.0.0"),
|
|
63
|
-
"TODO(SPARK-43554): Enable GroupByTests.test_basic_stat_funcs for pandas 2.0.0.",
|
|
64
|
-
)
|
|
65
|
-
def test_basic_stat_funcs(self):
|
|
66
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.var(), check_exact=False)
|
|
67
|
-
|
|
68
|
-
pdf, psdf = self.pdf, self.psdf
|
|
69
|
-
|
|
70
|
-
# Unlike pandas', the median in pandas-on-Spark is an approximated median based upon
|
|
71
|
-
# approximate percentile computation because computing median across a large dataset
|
|
72
|
-
# is extremely expensive.
|
|
73
|
-
expected = ps.DataFrame({"B": [3.1, 3.1], "D": [0, 0]}, index=pd.Index([1, 2], name="A"))
|
|
74
|
-
self.assert_eq(
|
|
75
|
-
psdf.groupby("A").median().sort_index(),
|
|
76
|
-
expected,
|
|
77
|
-
)
|
|
78
|
-
self.assert_eq(
|
|
79
|
-
psdf.groupby("A").median(numeric_only=None).sort_index(),
|
|
80
|
-
expected,
|
|
81
|
-
)
|
|
82
|
-
self.assert_eq(
|
|
83
|
-
psdf.groupby("A").median(numeric_only=False).sort_index(),
|
|
84
|
-
expected,
|
|
85
|
-
)
|
|
86
|
-
self.assert_eq(
|
|
87
|
-
psdf.groupby("A")["B"].median().sort_index(),
|
|
88
|
-
expected.B,
|
|
89
|
-
)
|
|
90
|
-
with self.assertRaises(TypeError):
|
|
91
|
-
psdf.groupby("A")["C"].mean()
|
|
92
|
-
|
|
93
|
-
with self.assertRaisesRegex(
|
|
94
|
-
TypeError, "Unaccepted data types of aggregation columns; numeric or bool expected."
|
|
95
|
-
):
|
|
96
|
-
psdf.groupby("A")[["C"]].std()
|
|
97
|
-
|
|
98
|
-
with self.assertRaisesRegex(
|
|
99
|
-
TypeError, "Unaccepted data types of aggregation columns; numeric or bool expected."
|
|
100
|
-
):
|
|
101
|
-
psdf.groupby("A")[["C"]].sem()
|
|
102
|
-
|
|
103
|
-
self.assert_eq(
|
|
104
|
-
psdf.groupby("A").std().sort_index(),
|
|
105
|
-
pdf.groupby("A").std().sort_index(),
|
|
106
|
-
check_exact=False,
|
|
107
|
-
)
|
|
108
|
-
self.assert_eq(
|
|
109
|
-
psdf.groupby("A").sem().sort_index(),
|
|
110
|
-
pdf.groupby("A").sem().sort_index(),
|
|
111
|
-
check_exact=False,
|
|
112
|
-
)
|
|
113
|
-
|
|
114
|
-
# TODO: fix bug of `sum` and re-enable the test below
|
|
115
|
-
# self._test_stat_func(lambda groupby_obj: groupby_obj.sum(), check_exact=False)
|
|
116
|
-
self.assert_eq(
|
|
117
|
-
psdf.groupby("A").sum().sort_index(),
|
|
118
|
-
pdf.groupby("A").sum().sort_index(),
|
|
119
|
-
check_exact=False,
|
|
120
|
-
)
|
|
121
|
-
|
|
122
|
-
@unittest.skipIf(
|
|
123
|
-
LooseVersion(pd.__version__) >= LooseVersion("2.0.0"),
|
|
124
|
-
"TODO(SPARK-43706): Enable GroupByTests.test_mean " "for pandas 2.0.0.",
|
|
125
|
-
)
|
|
126
|
-
def test_mean(self):
|
|
127
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.mean())
|
|
128
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.mean(numeric_only=None))
|
|
129
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.mean(numeric_only=True))
|
|
130
|
-
psdf = self.psdf
|
|
131
|
-
with self.assertRaises(TypeError):
|
|
132
|
-
psdf.groupby("A")["C"].mean()
|
|
133
|
-
|
|
134
|
-
def test_quantile(self):
|
|
135
|
-
dfs = [
|
|
136
|
-
pd.DataFrame(
|
|
137
|
-
[["a", 1], ["a", 2], ["a", 3], ["b", 1], ["b", 3], ["b", 5]], columns=["key", "val"]
|
|
138
|
-
),
|
|
139
|
-
pd.DataFrame(
|
|
140
|
-
[["a", True], ["a", True], ["a", False], ["b", True], ["b", True], ["b", False]],
|
|
141
|
-
columns=["key", "val"],
|
|
142
|
-
),
|
|
143
|
-
]
|
|
144
|
-
for df in dfs:
|
|
145
|
-
psdf = ps.from_pandas(df)
|
|
146
|
-
# q accept float and int between 0 and 1
|
|
147
|
-
for i in [0, 0.1, 0.5, 1]:
|
|
148
|
-
self.assert_eq(
|
|
149
|
-
df.groupby("key").quantile(q=i, interpolation="lower"),
|
|
150
|
-
psdf.groupby("key").quantile(q=i),
|
|
151
|
-
almost=True,
|
|
152
|
-
)
|
|
153
|
-
self.assert_eq(
|
|
154
|
-
df.groupby("key")["val"].quantile(q=i, interpolation="lower"),
|
|
155
|
-
psdf.groupby("key")["val"].quantile(q=i),
|
|
156
|
-
almost=True,
|
|
157
|
-
)
|
|
158
|
-
# raise ValueError when q not in [0, 1]
|
|
159
|
-
with self.assertRaises(ValueError):
|
|
160
|
-
psdf.groupby("key").quantile(q=1.1)
|
|
161
|
-
with self.assertRaises(ValueError):
|
|
162
|
-
psdf.groupby("key").quantile(q=-0.1)
|
|
163
|
-
with self.assertRaises(ValueError):
|
|
164
|
-
psdf.groupby("key").quantile(q=2)
|
|
165
|
-
with self.assertRaises(ValueError):
|
|
166
|
-
psdf.groupby("key").quantile(q=np.nan)
|
|
167
|
-
# raise TypeError when q type mismatch
|
|
168
|
-
with self.assertRaises(TypeError):
|
|
169
|
-
psdf.groupby("key").quantile(q="0.1")
|
|
170
|
-
# raise NotImplementedError when q is list like type
|
|
171
|
-
with self.assertRaises(NotImplementedError):
|
|
172
|
-
psdf.groupby("key").quantile(q=(0.1, 0.5))
|
|
173
|
-
with self.assertRaises(NotImplementedError):
|
|
174
|
-
psdf.groupby("key").quantile(q=[0.1, 0.5])
|
|
175
|
-
|
|
176
|
-
def test_min(self):
|
|
177
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.min())
|
|
178
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.min(min_count=2))
|
|
179
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.min(numeric_only=None))
|
|
180
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.min(numeric_only=True))
|
|
181
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.min(numeric_only=True, min_count=2))
|
|
182
|
-
|
|
183
|
-
def test_max(self):
|
|
184
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.max())
|
|
185
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.max(min_count=2))
|
|
186
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.max(numeric_only=None))
|
|
187
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.max(numeric_only=True))
|
|
188
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.max(numeric_only=True, min_count=2))
|
|
189
|
-
|
|
190
|
-
def test_sum(self):
|
|
191
|
-
pdf = pd.DataFrame(
|
|
192
|
-
{
|
|
193
|
-
"A": ["a", "a", "b", "a"],
|
|
194
|
-
"B": [1, 2, 1, 2],
|
|
195
|
-
"C": [-1.5, np.nan, -3.2, 0.1],
|
|
196
|
-
}
|
|
197
|
-
)
|
|
198
|
-
psdf = ps.from_pandas(pdf)
|
|
199
|
-
self.assert_eq(pdf.groupby("A").sum().sort_index(), psdf.groupby("A").sum().sort_index())
|
|
200
|
-
self.assert_eq(
|
|
201
|
-
pdf.groupby("A").sum(min_count=2).sort_index(),
|
|
202
|
-
psdf.groupby("A").sum(min_count=2).sort_index(),
|
|
203
|
-
)
|
|
204
|
-
self.assert_eq(
|
|
205
|
-
pdf.groupby("A").sum(min_count=3).sort_index(),
|
|
206
|
-
psdf.groupby("A").sum(min_count=3).sort_index(),
|
|
207
|
-
)
|
|
208
|
-
|
|
209
|
-
@unittest.skipIf(
|
|
210
|
-
LooseVersion(pd.__version__) >= LooseVersion("2.0.0"),
|
|
211
|
-
"TODO(SPARK-43553): Enable GroupByTests.test_mad for pandas 2.0.0.",
|
|
212
|
-
)
|
|
213
|
-
def test_mad(self):
|
|
214
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.mad())
|
|
215
|
-
|
|
216
|
-
def test_first(self):
|
|
217
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.first())
|
|
218
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.first(numeric_only=None))
|
|
219
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.first(numeric_only=True))
|
|
220
|
-
|
|
221
|
-
pdf = pd.DataFrame(
|
|
222
|
-
{
|
|
223
|
-
"A": [1, 2, 1, 2],
|
|
224
|
-
"B": [-1.5, np.nan, -3.2, 0.1],
|
|
225
|
-
}
|
|
226
|
-
)
|
|
227
|
-
psdf = ps.from_pandas(pdf)
|
|
228
|
-
self.assert_eq(
|
|
229
|
-
pdf.groupby("A").first().sort_index(), psdf.groupby("A").first().sort_index()
|
|
230
|
-
)
|
|
231
|
-
self.assert_eq(
|
|
232
|
-
pdf.groupby("A").first(min_count=1).sort_index(),
|
|
233
|
-
psdf.groupby("A").first(min_count=1).sort_index(),
|
|
234
|
-
)
|
|
235
|
-
self.assert_eq(
|
|
236
|
-
pdf.groupby("A").first(min_count=2).sort_index(),
|
|
237
|
-
psdf.groupby("A").first(min_count=2).sort_index(),
|
|
238
|
-
)
|
|
239
|
-
|
|
240
|
-
def test_last(self):
|
|
241
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.last())
|
|
242
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.last(numeric_only=None))
|
|
243
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.last(numeric_only=True))
|
|
244
|
-
|
|
245
|
-
pdf = pd.DataFrame(
|
|
246
|
-
{
|
|
247
|
-
"A": [1, 2, 1, 2],
|
|
248
|
-
"B": [-1.5, np.nan, -3.2, 0.1],
|
|
249
|
-
}
|
|
250
|
-
)
|
|
251
|
-
psdf = ps.from_pandas(pdf)
|
|
252
|
-
self.assert_eq(pdf.groupby("A").last().sort_index(), psdf.groupby("A").last().sort_index())
|
|
253
|
-
self.assert_eq(
|
|
254
|
-
pdf.groupby("A").last(min_count=1).sort_index(),
|
|
255
|
-
psdf.groupby("A").last(min_count=1).sort_index(),
|
|
256
|
-
)
|
|
257
|
-
self.assert_eq(
|
|
258
|
-
pdf.groupby("A").last(min_count=2).sort_index(),
|
|
259
|
-
psdf.groupby("A").last(min_count=2).sort_index(),
|
|
260
|
-
)
|
|
261
|
-
|
|
262
|
-
@unittest.skipIf(
|
|
263
|
-
LooseVersion(pd.__version__) >= LooseVersion("2.0.0"),
|
|
264
|
-
"TODO(SPARK-43552): Enable GroupByTests.test_nth for pandas 2.0.0.",
|
|
265
|
-
)
|
|
266
|
-
def test_nth(self):
|
|
267
|
-
for n in [0, 1, 2, 128, -1, -2, -128]:
|
|
268
|
-
self._test_stat_func(lambda groupby_obj: groupby_obj.nth(n))
|
|
269
|
-
|
|
270
|
-
with self.assertRaisesRegex(NotImplementedError, "slice or list"):
|
|
271
|
-
self.psdf.groupby("B").nth(slice(0, 2))
|
|
272
|
-
with self.assertRaisesRegex(NotImplementedError, "slice or list"):
|
|
273
|
-
self.psdf.groupby("B").nth([0, 1, -1])
|
|
274
|
-
with self.assertRaisesRegex(TypeError, "Invalid index"):
|
|
275
|
-
self.psdf.groupby("B").nth("x")
|
|
276
|
-
|
|
277
|
-
@unittest.skipIf(
|
|
278
|
-
LooseVersion(pd.__version__) >= LooseVersion("2.0.0"),
|
|
279
|
-
"TODO(SPARK-43551): Enable GroupByTests.test_prod for pandas 2.0.0.",
|
|
280
|
-
)
|
|
281
|
-
def test_prod(self):
|
|
282
|
-
pdf = pd.DataFrame(
|
|
283
|
-
{
|
|
284
|
-
"A": [1, 2, 1, 2, 1],
|
|
285
|
-
"B": [3.1, 4.1, 4.1, 3.1, 0.1],
|
|
286
|
-
"C": ["a", "b", "b", "a", "c"],
|
|
287
|
-
"D": [True, False, False, True, False],
|
|
288
|
-
"E": [-1, -2, 3, -4, -2],
|
|
289
|
-
"F": [-1.5, np.nan, -3.2, 0.1, 0],
|
|
290
|
-
"G": [np.nan, np.nan, np.nan, np.nan, np.nan],
|
|
291
|
-
}
|
|
292
|
-
)
|
|
293
|
-
psdf = ps.from_pandas(pdf)
|
|
294
|
-
|
|
295
|
-
for n in [0, 1, 2, 128, -1, -2, -128]:
|
|
296
|
-
self._test_stat_func(
|
|
297
|
-
lambda groupby_obj: groupby_obj.prod(min_count=n), check_exact=False
|
|
298
|
-
)
|
|
299
|
-
self._test_stat_func(
|
|
300
|
-
lambda groupby_obj: groupby_obj.prod(numeric_only=None, min_count=n),
|
|
301
|
-
check_exact=False,
|
|
302
|
-
)
|
|
303
|
-
self._test_stat_func(
|
|
304
|
-
lambda groupby_obj: groupby_obj.prod(numeric_only=True, min_count=n),
|
|
305
|
-
check_exact=False,
|
|
306
|
-
)
|
|
307
|
-
self.assert_eq(
|
|
308
|
-
pdf.groupby("A").prod(min_count=n).sort_index(),
|
|
309
|
-
psdf.groupby("A").prod(min_count=n).sort_index(),
|
|
310
|
-
almost=True,
|
|
311
|
-
)
|
|
312
|
-
|
|
313
|
-
def test_median(self):
|
|
314
|
-
psdf = ps.DataFrame(
|
|
315
|
-
{
|
|
316
|
-
"a": [1.0, 1.0, 1.0, 1.0, 2.0, 2.0, 2.0, 3.0, 3.0, 3.0],
|
|
317
|
-
"b": [2.0, 3.0, 1.0, 4.0, 6.0, 9.0, 8.0, 10.0, 7.0, 5.0],
|
|
318
|
-
"c": [3.0, 5.0, 2.0, 5.0, 1.0, 2.0, 6.0, 4.0, 3.0, 6.0],
|
|
319
|
-
},
|
|
320
|
-
columns=["a", "b", "c"],
|
|
321
|
-
index=[7, 2, 4, 1, 3, 4, 9, 10, 5, 6],
|
|
322
|
-
)
|
|
323
|
-
# DataFrame
|
|
324
|
-
expected_result = ps.DataFrame(
|
|
325
|
-
{"b": [2.0, 8.0, 7.0], "c": [3.0, 2.0, 4.0]}, index=pd.Index([1.0, 2.0, 3.0], name="a")
|
|
326
|
-
)
|
|
327
|
-
self.assert_eq(expected_result, psdf.groupby("a").median().sort_index())
|
|
328
|
-
# Series
|
|
329
|
-
expected_result = ps.Series(
|
|
330
|
-
[2.0, 8.0, 7.0], name="b", index=pd.Index([1.0, 2.0, 3.0], name="a")
|
|
331
|
-
)
|
|
332
|
-
self.assert_eq(expected_result, psdf.groupby("a")["b"].median().sort_index())
|
|
333
|
-
|
|
334
|
-
with self.assertRaisesRegex(TypeError, "accuracy must be an integer; however"):
|
|
335
|
-
psdf.groupby("a").median(accuracy="a")
|
|
336
|
-
|
|
337
|
-
def test_ddof(self):
|
|
338
|
-
pdf = pd.DataFrame(
|
|
339
|
-
{
|
|
340
|
-
"a": [1, 1, 1, 1, 2, 2, 2, 3, 3, 3] * 3,
|
|
341
|
-
"b": [2, 3, 1, 4, 6, 9, 8, 10, 7, 5] * 3,
|
|
342
|
-
"c": [3, 5, 2, 5, 1, 2, 6, 4, 3, 6] * 3,
|
|
343
|
-
},
|
|
344
|
-
index=np.random.rand(10 * 3),
|
|
345
|
-
)
|
|
346
|
-
psdf = ps.from_pandas(pdf)
|
|
347
|
-
|
|
348
|
-
for ddof in [-1, 0, 1, 2, 3]:
|
|
349
|
-
# std
|
|
350
|
-
self.assert_eq(
|
|
351
|
-
pdf.groupby("a").std(ddof=ddof).sort_index(),
|
|
352
|
-
psdf.groupby("a").std(ddof=ddof).sort_index(),
|
|
353
|
-
check_exact=False,
|
|
354
|
-
)
|
|
355
|
-
self.assert_eq(
|
|
356
|
-
pdf.groupby("a")["b"].std(ddof=ddof).sort_index(),
|
|
357
|
-
psdf.groupby("a")["b"].std(ddof=ddof).sort_index(),
|
|
358
|
-
check_exact=False,
|
|
359
|
-
)
|
|
360
|
-
# var
|
|
361
|
-
self.assert_eq(
|
|
362
|
-
pdf.groupby("a").var(ddof=ddof).sort_index(),
|
|
363
|
-
psdf.groupby("a").var(ddof=ddof).sort_index(),
|
|
364
|
-
check_exact=False,
|
|
365
|
-
)
|
|
366
|
-
self.assert_eq(
|
|
367
|
-
pdf.groupby("a")["b"].var(ddof=ddof).sort_index(),
|
|
368
|
-
psdf.groupby("a")["b"].var(ddof=ddof).sort_index(),
|
|
369
|
-
check_exact=False,
|
|
370
|
-
)
|
|
371
|
-
# sem
|
|
372
|
-
self.assert_eq(
|
|
373
|
-
pdf.groupby("a").sem(ddof=ddof).sort_index(),
|
|
374
|
-
psdf.groupby("a").sem(ddof=ddof).sort_index(),
|
|
375
|
-
check_exact=False,
|
|
376
|
-
)
|
|
377
|
-
self.assert_eq(
|
|
378
|
-
pdf.groupby("a")["b"].sem(ddof=ddof).sort_index(),
|
|
379
|
-
psdf.groupby("a")["b"].sem(ddof=ddof).sort_index(),
|
|
380
|
-
check_exact=False,
|
|
381
|
-
)
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
class GroupbyStatTests(GroupbyStatMixin, ComparisonTestBase, SQLTestUtils):
|
|
385
|
-
pass
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
if __name__ == "__main__":
|
|
389
|
-
from pyspark.pandas.tests.groupby.test_stat import * # noqa: F401
|
|
390
|
-
|
|
391
|
-
try:
|
|
392
|
-
import xmlrunner
|
|
393
|
-
|
|
394
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
395
|
-
except ImportError:
|
|
396
|
-
testRunner = None
|
|
397
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
3
|
-
# contributor license agreements. See the NOTICE file distributed with
|
|
4
|
-
# this work for additional information regarding copyright ownership.
|
|
5
|
-
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
6
|
-
# (the "License"); you may not use this file except in compliance with
|
|
7
|
-
# the License. You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
-
# See the License for the specific language governing permissions and
|
|
15
|
-
# limitations under the License.
|
|
16
|
-
#
|
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
3
|
-
# contributor license agreements. See the NOTICE file distributed with
|
|
4
|
-
# this work for additional information regarding copyright ownership.
|
|
5
|
-
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
6
|
-
# (the "License"); you may not use this file except in compliance with
|
|
7
|
-
# the License. You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
-
# See the License for the specific language governing permissions and
|
|
15
|
-
# limitations under the License.
|
|
16
|
-
#
|
|
17
|
-
import unittest
|
|
18
|
-
|
|
19
|
-
import numpy as np
|
|
20
|
-
import pandas as pd
|
|
21
|
-
|
|
22
|
-
from pyspark import pandas as ps
|
|
23
|
-
from pyspark.testing.pandasutils import ComparisonTestBase
|
|
24
|
-
from pyspark.testing.sqlutils import SQLTestUtils
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
class FrameAlignMixin:
|
|
28
|
-
@property
|
|
29
|
-
def pdf(self):
|
|
30
|
-
return pd.DataFrame(
|
|
31
|
-
{"a": [1, 2, 3, 4, 5, 6, 7, 8, 9], "b": [4, 5, 6, 3, 2, 1, 0, 0, 0]},
|
|
32
|
-
index=np.random.rand(9),
|
|
33
|
-
)
|
|
34
|
-
|
|
35
|
-
@property
|
|
36
|
-
def df_pair(self):
|
|
37
|
-
pdf = self.pdf
|
|
38
|
-
psdf = ps.from_pandas(pdf)
|
|
39
|
-
return pdf, psdf
|
|
40
|
-
|
|
41
|
-
def test_align(self):
|
|
42
|
-
pdf1 = pd.DataFrame({"a": [1, 2, 3], "b": ["a", "b", "c"]}, index=[10, 20, 30])
|
|
43
|
-
psdf1 = ps.from_pandas(pdf1)
|
|
44
|
-
|
|
45
|
-
for join in ["outer", "inner", "left", "right"]:
|
|
46
|
-
for axis in [None, 0, 1]:
|
|
47
|
-
psdf_l, psdf_r = psdf1.align(psdf1[["b"]], join=join, axis=axis)
|
|
48
|
-
pdf_l, pdf_r = pdf1.align(pdf1[["b"]], join=join, axis=axis)
|
|
49
|
-
self.assert_eq(psdf_l, pdf_l)
|
|
50
|
-
self.assert_eq(psdf_r, pdf_r)
|
|
51
|
-
|
|
52
|
-
psdf_l, psdf_r = psdf1[["a"]].align(psdf1[["b", "a"]], join=join, axis=axis)
|
|
53
|
-
pdf_l, pdf_r = pdf1[["a"]].align(pdf1[["b", "a"]], join=join, axis=axis)
|
|
54
|
-
self.assert_eq(psdf_l, pdf_l)
|
|
55
|
-
self.assert_eq(psdf_r, pdf_r)
|
|
56
|
-
|
|
57
|
-
psdf_l, psdf_r = psdf1[["b", "a"]].align(psdf1[["a"]], join=join, axis=axis)
|
|
58
|
-
pdf_l, pdf_r = pdf1[["b", "a"]].align(pdf1[["a"]], join=join, axis=axis)
|
|
59
|
-
self.assert_eq(psdf_l, pdf_l)
|
|
60
|
-
self.assert_eq(psdf_r, pdf_r)
|
|
61
|
-
|
|
62
|
-
psdf_l, psdf_r = psdf1.align(psdf1["b"], axis=0)
|
|
63
|
-
pdf_l, pdf_r = pdf1.align(pdf1["b"], axis=0)
|
|
64
|
-
self.assert_eq(psdf_l, pdf_l)
|
|
65
|
-
self.assert_eq(psdf_r, pdf_r)
|
|
66
|
-
|
|
67
|
-
psdf_l, psser_b = psdf1[["a"]].align(psdf1["b"], axis=0)
|
|
68
|
-
pdf_l, pser_b = pdf1[["a"]].align(pdf1["b"], axis=0)
|
|
69
|
-
self.assert_eq(psdf_l, pdf_l)
|
|
70
|
-
self.assert_eq(psser_b, pser_b)
|
|
71
|
-
|
|
72
|
-
self.assertRaises(ValueError, lambda: psdf1.align(psdf1, join="unknown"))
|
|
73
|
-
self.assertRaises(ValueError, lambda: psdf1.align(psdf1["b"]))
|
|
74
|
-
self.assertRaises(TypeError, lambda: psdf1.align(["b"]))
|
|
75
|
-
self.assertRaises(NotImplementedError, lambda: psdf1.align(psdf1["b"], axis=1))
|
|
76
|
-
|
|
77
|
-
pdf2 = pd.DataFrame({"a": [4, 5, 6], "d": ["d", "e", "f"]}, index=[10, 11, 12])
|
|
78
|
-
psdf2 = ps.from_pandas(pdf2)
|
|
79
|
-
|
|
80
|
-
for join in ["outer", "inner", "left", "right"]:
|
|
81
|
-
psdf_l, psdf_r = psdf1.align(psdf2, join=join, axis=1)
|
|
82
|
-
pdf_l, pdf_r = pdf1.align(pdf2, join=join, axis=1)
|
|
83
|
-
self.assert_eq(psdf_l.sort_index(), pdf_l.sort_index())
|
|
84
|
-
self.assert_eq(psdf_r.sort_index(), pdf_r.sort_index())
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
class FrameAlignTests(FrameAlignMixin, ComparisonTestBase, SQLTestUtils):
|
|
88
|
-
pass
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
if __name__ == "__main__":
|
|
92
|
-
from pyspark.pandas.tests.indexes.test_align import * # noqa: F401
|
|
93
|
-
|
|
94
|
-
try:
|
|
95
|
-
import xmlrunner
|
|
96
|
-
|
|
97
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
98
|
-
except ImportError:
|
|
99
|
-
testRunner = None
|
|
100
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|