snowpark-connect 0.20.2__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.

Files changed (879) hide show
  1. snowflake/snowpark_connect/__init__.py +23 -0
  2. snowflake/snowpark_connect/analyze_plan/__init__.py +3 -0
  3. snowflake/snowpark_connect/analyze_plan/map_tree_string.py +38 -0
  4. snowflake/snowpark_connect/column_name_handler.py +735 -0
  5. snowflake/snowpark_connect/config.py +576 -0
  6. snowflake/snowpark_connect/constants.py +47 -0
  7. snowflake/snowpark_connect/control_server.py +52 -0
  8. snowflake/snowpark_connect/dataframe_name_handler.py +54 -0
  9. snowflake/snowpark_connect/date_time_format_mapping.py +399 -0
  10. snowflake/snowpark_connect/empty_dataframe.py +18 -0
  11. snowflake/snowpark_connect/error/__init__.py +11 -0
  12. snowflake/snowpark_connect/error/error_mapping.py +6174 -0
  13. snowflake/snowpark_connect/error/error_utils.py +321 -0
  14. snowflake/snowpark_connect/error/exceptions.py +24 -0
  15. snowflake/snowpark_connect/execute_plan/__init__.py +3 -0
  16. snowflake/snowpark_connect/execute_plan/map_execution_command.py +204 -0
  17. snowflake/snowpark_connect/execute_plan/map_execution_root.py +173 -0
  18. snowflake/snowpark_connect/execute_plan/utils.py +183 -0
  19. snowflake/snowpark_connect/expression/__init__.py +3 -0
  20. snowflake/snowpark_connect/expression/literal.py +90 -0
  21. snowflake/snowpark_connect/expression/map_cast.py +343 -0
  22. snowflake/snowpark_connect/expression/map_expression.py +293 -0
  23. snowflake/snowpark_connect/expression/map_extension.py +104 -0
  24. snowflake/snowpark_connect/expression/map_sql_expression.py +633 -0
  25. snowflake/snowpark_connect/expression/map_udf.py +142 -0
  26. snowflake/snowpark_connect/expression/map_unresolved_attribute.py +241 -0
  27. snowflake/snowpark_connect/expression/map_unresolved_extract_value.py +85 -0
  28. snowflake/snowpark_connect/expression/map_unresolved_function.py +9450 -0
  29. snowflake/snowpark_connect/expression/map_unresolved_star.py +218 -0
  30. snowflake/snowpark_connect/expression/map_update_fields.py +164 -0
  31. snowflake/snowpark_connect/expression/map_window_function.py +258 -0
  32. snowflake/snowpark_connect/expression/typer.py +125 -0
  33. snowflake/snowpark_connect/includes/__init__.py +0 -0
  34. snowflake/snowpark_connect/includes/jars/antlr4-runtime-4.9.3.jar +0 -0
  35. snowflake/snowpark_connect/includes/jars/commons-cli-1.5.0.jar +0 -0
  36. snowflake/snowpark_connect/includes/jars/commons-codec-1.16.1.jar +0 -0
  37. snowflake/snowpark_connect/includes/jars/commons-collections-3.2.2.jar +0 -0
  38. snowflake/snowpark_connect/includes/jars/commons-collections4-4.4.jar +0 -0
  39. snowflake/snowpark_connect/includes/jars/commons-compiler-3.1.9.jar +0 -0
  40. snowflake/snowpark_connect/includes/jars/commons-compress-1.26.0.jar +0 -0
  41. snowflake/snowpark_connect/includes/jars/commons-crypto-1.1.0.jar +0 -0
  42. snowflake/snowpark_connect/includes/jars/commons-dbcp-1.4.jar +0 -0
  43. snowflake/snowpark_connect/includes/jars/commons-io-2.16.1.jar +0 -0
  44. snowflake/snowpark_connect/includes/jars/commons-lang-2.6.jar +0 -0
  45. snowflake/snowpark_connect/includes/jars/commons-lang3-3.12.0.jar +0 -0
  46. snowflake/snowpark_connect/includes/jars/commons-logging-1.1.3.jar +0 -0
  47. snowflake/snowpark_connect/includes/jars/commons-math3-3.6.1.jar +0 -0
  48. snowflake/snowpark_connect/includes/jars/commons-pool-1.5.4.jar +0 -0
  49. snowflake/snowpark_connect/includes/jars/commons-text-1.10.0.jar +0 -0
  50. snowflake/snowpark_connect/includes/jars/hadoop-client-api-3.3.4.jar +0 -0
  51. snowflake/snowpark_connect/includes/jars/jackson-annotations-2.15.2.jar +0 -0
  52. snowflake/snowpark_connect/includes/jars/jackson-core-2.15.2.jar +0 -0
  53. snowflake/snowpark_connect/includes/jars/jackson-core-asl-1.9.13.jar +0 -0
  54. snowflake/snowpark_connect/includes/jars/jackson-databind-2.15.2.jar +0 -0
  55. snowflake/snowpark_connect/includes/jars/jackson-dataformat-yaml-2.15.2.jar +0 -0
  56. snowflake/snowpark_connect/includes/jars/jackson-datatype-jsr310-2.15.2.jar +0 -0
  57. snowflake/snowpark_connect/includes/jars/jackson-mapper-asl-1.9.13.jar +0 -0
  58. snowflake/snowpark_connect/includes/jars/jackson-module-scala_2.12-2.15.2.jar +0 -0
  59. snowflake/snowpark_connect/includes/jars/json4s-ast_2.12-3.7.0-M11.jar +0 -0
  60. snowflake/snowpark_connect/includes/jars/json4s-core_2.12-3.7.0-M11.jar +0 -0
  61. snowflake/snowpark_connect/includes/jars/json4s-jackson_2.12-3.7.0-M11.jar +0 -0
  62. snowflake/snowpark_connect/includes/jars/json4s-scalap_2.12-3.7.0-M11.jar +0 -0
  63. snowflake/snowpark_connect/includes/jars/kryo-shaded-4.0.2.jar +0 -0
  64. snowflake/snowpark_connect/includes/jars/log4j-1.2-api-2.20.0.jar +0 -0
  65. snowflake/snowpark_connect/includes/jars/log4j-api-2.20.0.jar +0 -0
  66. snowflake/snowpark_connect/includes/jars/log4j-core-2.20.0.jar +0 -0
  67. snowflake/snowpark_connect/includes/jars/log4j-slf4j2-impl-2.20.0.jar +0 -0
  68. snowflake/snowpark_connect/includes/jars/paranamer-2.8.jar +0 -0
  69. snowflake/snowpark_connect/includes/jars/scala-collection-compat_2.12-2.7.0.jar +0 -0
  70. snowflake/snowpark_connect/includes/jars/scala-compiler-2.12.18.jar +0 -0
  71. snowflake/snowpark_connect/includes/jars/scala-library-2.12.18.jar +0 -0
  72. snowflake/snowpark_connect/includes/jars/scala-parser-combinators_2.12-2.3.0.jar +0 -0
  73. snowflake/snowpark_connect/includes/jars/scala-reflect-2.12.18.jar +0 -0
  74. snowflake/snowpark_connect/includes/jars/scala-xml_2.12-2.1.0.jar +0 -0
  75. snowflake/snowpark_connect/includes/jars/slf4j-api-2.0.7.jar +0 -0
  76. snowflake/snowpark_connect/includes/jars/spark-catalyst_2.12-3.5.6.jar +0 -0
  77. snowflake/snowpark_connect/includes/jars/spark-common-utils_2.12-3.5.6.jar +0 -0
  78. snowflake/snowpark_connect/includes/jars/spark-core_2.12-3.5.6.jar +0 -0
  79. snowflake/snowpark_connect/includes/jars/spark-graphx_2.12-3.5.6.jar +0 -0
  80. snowflake/snowpark_connect/includes/jars/spark-hive-thriftserver_2.12-3.5.6.jar +0 -0
  81. snowflake/snowpark_connect/includes/jars/spark-hive_2.12-3.5.6.jar +0 -0
  82. snowflake/snowpark_connect/includes/jars/spark-kubernetes_2.12-3.5.6.jar +0 -0
  83. snowflake/snowpark_connect/includes/jars/spark-kvstore_2.12-3.5.6.jar +0 -0
  84. snowflake/snowpark_connect/includes/jars/spark-launcher_2.12-3.5.6.jar +0 -0
  85. snowflake/snowpark_connect/includes/jars/spark-mesos_2.12-3.5.6.jar +0 -0
  86. snowflake/snowpark_connect/includes/jars/spark-mllib-local_2.12-3.5.6.jar +0 -0
  87. snowflake/snowpark_connect/includes/jars/spark-mllib_2.12-3.5.6.jar +0 -0
  88. snowflake/snowpark_connect/includes/jars/spark-network-common_2.12-3.5.6.jar +0 -0
  89. snowflake/snowpark_connect/includes/jars/spark-network-shuffle_2.12-3.5.6.jar +0 -0
  90. snowflake/snowpark_connect/includes/jars/spark-repl_2.12-3.5.6.jar +0 -0
  91. snowflake/snowpark_connect/includes/jars/spark-sketch_2.12-3.5.6.jar +0 -0
  92. snowflake/snowpark_connect/includes/jars/spark-sql-api_2.12-3.5.6.jar +0 -0
  93. snowflake/snowpark_connect/includes/jars/spark-sql_2.12-3.5.6.jar +0 -0
  94. snowflake/snowpark_connect/includes/jars/spark-streaming_2.12-3.5.6.jar +0 -0
  95. snowflake/snowpark_connect/includes/jars/spark-tags_2.12-3.5.6.jar +0 -0
  96. snowflake/snowpark_connect/includes/jars/spark-unsafe_2.12-3.5.6.jar +0 -0
  97. snowflake/snowpark_connect/includes/jars/spark-yarn_2.12-3.5.6.jar +0 -0
  98. snowflake/snowpark_connect/includes/python/__init__.py +21 -0
  99. snowflake/snowpark_connect/includes/python/pyspark/__init__.py +173 -0
  100. snowflake/snowpark_connect/includes/python/pyspark/_globals.py +71 -0
  101. snowflake/snowpark_connect/includes/python/pyspark/_typing.pyi +43 -0
  102. snowflake/snowpark_connect/includes/python/pyspark/accumulators.py +341 -0
  103. snowflake/snowpark_connect/includes/python/pyspark/broadcast.py +383 -0
  104. snowflake/snowpark_connect/includes/python/pyspark/cloudpickle/__init__.py +8 -0
  105. snowflake/snowpark_connect/includes/python/pyspark/cloudpickle/cloudpickle.py +948 -0
  106. snowflake/snowpark_connect/includes/python/pyspark/cloudpickle/cloudpickle_fast.py +844 -0
  107. snowflake/snowpark_connect/includes/python/pyspark/cloudpickle/compat.py +18 -0
  108. snowflake/snowpark_connect/includes/python/pyspark/conf.py +276 -0
  109. snowflake/snowpark_connect/includes/python/pyspark/context.py +2601 -0
  110. snowflake/snowpark_connect/includes/python/pyspark/daemon.py +218 -0
  111. snowflake/snowpark_connect/includes/python/pyspark/errors/__init__.py +70 -0
  112. snowflake/snowpark_connect/includes/python/pyspark/errors/error_classes.py +889 -0
  113. snowflake/snowpark_connect/includes/python/pyspark/errors/exceptions/__init__.py +16 -0
  114. snowflake/snowpark_connect/includes/python/pyspark/errors/exceptions/base.py +228 -0
  115. snowflake/snowpark_connect/includes/python/pyspark/errors/exceptions/captured.py +307 -0
  116. snowflake/snowpark_connect/includes/python/pyspark/errors/exceptions/connect.py +190 -0
  117. snowflake/snowpark_connect/includes/python/pyspark/errors/tests/__init__.py +16 -0
  118. snowflake/snowpark_connect/includes/python/pyspark/errors/tests/test_errors.py +60 -0
  119. snowflake/snowpark_connect/includes/python/pyspark/errors/utils.py +116 -0
  120. snowflake/snowpark_connect/includes/python/pyspark/files.py +165 -0
  121. snowflake/snowpark_connect/includes/python/pyspark/find_spark_home.py +95 -0
  122. snowflake/snowpark_connect/includes/python/pyspark/install.py +203 -0
  123. snowflake/snowpark_connect/includes/python/pyspark/instrumentation_utils.py +190 -0
  124. snowflake/snowpark_connect/includes/python/pyspark/java_gateway.py +248 -0
  125. snowflake/snowpark_connect/includes/python/pyspark/join.py +118 -0
  126. snowflake/snowpark_connect/includes/python/pyspark/ml/__init__.py +71 -0
  127. snowflake/snowpark_connect/includes/python/pyspark/ml/_typing.pyi +84 -0
  128. snowflake/snowpark_connect/includes/python/pyspark/ml/base.py +414 -0
  129. snowflake/snowpark_connect/includes/python/pyspark/ml/classification.py +4332 -0
  130. snowflake/snowpark_connect/includes/python/pyspark/ml/clustering.py +2188 -0
  131. snowflake/snowpark_connect/includes/python/pyspark/ml/common.py +146 -0
  132. snowflake/snowpark_connect/includes/python/pyspark/ml/connect/__init__.py +44 -0
  133. snowflake/snowpark_connect/includes/python/pyspark/ml/connect/base.py +346 -0
  134. snowflake/snowpark_connect/includes/python/pyspark/ml/connect/classification.py +382 -0
  135. snowflake/snowpark_connect/includes/python/pyspark/ml/connect/evaluation.py +291 -0
  136. snowflake/snowpark_connect/includes/python/pyspark/ml/connect/feature.py +258 -0
  137. snowflake/snowpark_connect/includes/python/pyspark/ml/connect/functions.py +77 -0
  138. snowflake/snowpark_connect/includes/python/pyspark/ml/connect/io_utils.py +335 -0
  139. snowflake/snowpark_connect/includes/python/pyspark/ml/connect/pipeline.py +262 -0
  140. snowflake/snowpark_connect/includes/python/pyspark/ml/connect/summarizer.py +120 -0
  141. snowflake/snowpark_connect/includes/python/pyspark/ml/connect/tuning.py +579 -0
  142. snowflake/snowpark_connect/includes/python/pyspark/ml/connect/util.py +173 -0
  143. snowflake/snowpark_connect/includes/python/pyspark/ml/deepspeed/__init__.py +16 -0
  144. snowflake/snowpark_connect/includes/python/pyspark/ml/deepspeed/deepspeed_distributor.py +165 -0
  145. snowflake/snowpark_connect/includes/python/pyspark/ml/deepspeed/tests/test_deepspeed_distributor.py +306 -0
  146. snowflake/snowpark_connect/includes/python/pyspark/ml/dl_util.py +150 -0
  147. snowflake/snowpark_connect/includes/python/pyspark/ml/evaluation.py +1166 -0
  148. snowflake/snowpark_connect/includes/python/pyspark/ml/feature.py +7474 -0
  149. snowflake/snowpark_connect/includes/python/pyspark/ml/fpm.py +543 -0
  150. snowflake/snowpark_connect/includes/python/pyspark/ml/functions.py +842 -0
  151. snowflake/snowpark_connect/includes/python/pyspark/ml/image.py +271 -0
  152. snowflake/snowpark_connect/includes/python/pyspark/ml/linalg/__init__.py +1382 -0
  153. snowflake/snowpark_connect/includes/python/pyspark/ml/model_cache.py +55 -0
  154. snowflake/snowpark_connect/includes/python/pyspark/ml/param/__init__.py +602 -0
  155. snowflake/snowpark_connect/includes/python/pyspark/ml/param/_shared_params_code_gen.py +368 -0
  156. snowflake/snowpark_connect/includes/python/pyspark/ml/param/shared.py +878 -0
  157. snowflake/snowpark_connect/includes/python/pyspark/ml/pipeline.py +451 -0
  158. snowflake/snowpark_connect/includes/python/pyspark/ml/recommendation.py +748 -0
  159. snowflake/snowpark_connect/includes/python/pyspark/ml/regression.py +3335 -0
  160. snowflake/snowpark_connect/includes/python/pyspark/ml/stat.py +523 -0
  161. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/__init__.py +16 -0
  162. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_classification.py +53 -0
  163. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_evaluation.py +50 -0
  164. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_feature.py +43 -0
  165. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_function.py +114 -0
  166. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_pipeline.py +47 -0
  167. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_summarizer.py +43 -0
  168. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_tuning.py +46 -0
  169. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_classification.py +238 -0
  170. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_evaluation.py +194 -0
  171. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_feature.py +156 -0
  172. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_pipeline.py +184 -0
  173. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_summarizer.py +78 -0
  174. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_tuning.py +292 -0
  175. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_data_loader.py +50 -0
  176. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_distributor.py +152 -0
  177. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_algorithms.py +456 -0
  178. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_base.py +96 -0
  179. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_dl_util.py +186 -0
  180. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_evaluation.py +77 -0
  181. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_feature.py +401 -0
  182. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_functions.py +528 -0
  183. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_image.py +82 -0
  184. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_linalg.py +409 -0
  185. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_model_cache.py +55 -0
  186. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_param.py +441 -0
  187. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_persistence.py +546 -0
  188. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_pipeline.py +71 -0
  189. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_stat.py +52 -0
  190. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_training_summary.py +494 -0
  191. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_util.py +85 -0
  192. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_wrapper.py +138 -0
  193. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/__init__.py +16 -0
  194. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_basic.py +151 -0
  195. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_nested.py +97 -0
  196. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_pipeline.py +143 -0
  197. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tuning.py +551 -0
  198. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_basic.py +137 -0
  199. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_nested.py +96 -0
  200. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_pipeline.py +142 -0
  201. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/__init__.py +16 -0
  202. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/data.py +100 -0
  203. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/distributor.py +1133 -0
  204. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/log_communication.py +198 -0
  205. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/__init__.py +16 -0
  206. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_data_loader.py +137 -0
  207. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_distributor.py +561 -0
  208. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_log_communication.py +172 -0
  209. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/torch_run_process_wrapper.py +83 -0
  210. snowflake/snowpark_connect/includes/python/pyspark/ml/tree.py +434 -0
  211. snowflake/snowpark_connect/includes/python/pyspark/ml/tuning.py +1741 -0
  212. snowflake/snowpark_connect/includes/python/pyspark/ml/util.py +749 -0
  213. snowflake/snowpark_connect/includes/python/pyspark/ml/wrapper.py +465 -0
  214. snowflake/snowpark_connect/includes/python/pyspark/mllib/__init__.py +44 -0
  215. snowflake/snowpark_connect/includes/python/pyspark/mllib/_typing.pyi +33 -0
  216. snowflake/snowpark_connect/includes/python/pyspark/mllib/classification.py +989 -0
  217. snowflake/snowpark_connect/includes/python/pyspark/mllib/clustering.py +1318 -0
  218. snowflake/snowpark_connect/includes/python/pyspark/mllib/common.py +174 -0
  219. snowflake/snowpark_connect/includes/python/pyspark/mllib/evaluation.py +691 -0
  220. snowflake/snowpark_connect/includes/python/pyspark/mllib/feature.py +1085 -0
  221. snowflake/snowpark_connect/includes/python/pyspark/mllib/fpm.py +233 -0
  222. snowflake/snowpark_connect/includes/python/pyspark/mllib/linalg/__init__.py +1653 -0
  223. snowflake/snowpark_connect/includes/python/pyspark/mllib/linalg/distributed.py +1662 -0
  224. snowflake/snowpark_connect/includes/python/pyspark/mllib/random.py +698 -0
  225. snowflake/snowpark_connect/includes/python/pyspark/mllib/recommendation.py +389 -0
  226. snowflake/snowpark_connect/includes/python/pyspark/mllib/regression.py +1067 -0
  227. snowflake/snowpark_connect/includes/python/pyspark/mllib/stat/KernelDensity.py +59 -0
  228. snowflake/snowpark_connect/includes/python/pyspark/mllib/stat/__init__.py +34 -0
  229. snowflake/snowpark_connect/includes/python/pyspark/mllib/stat/_statistics.py +409 -0
  230. snowflake/snowpark_connect/includes/python/pyspark/mllib/stat/distribution.py +39 -0
  231. snowflake/snowpark_connect/includes/python/pyspark/mllib/stat/test.py +86 -0
  232. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/__init__.py +16 -0
  233. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_algorithms.py +353 -0
  234. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_feature.py +192 -0
  235. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_linalg.py +680 -0
  236. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_stat.py +206 -0
  237. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_streaming_algorithms.py +471 -0
  238. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_util.py +108 -0
  239. snowflake/snowpark_connect/includes/python/pyspark/mllib/tree.py +888 -0
  240. snowflake/snowpark_connect/includes/python/pyspark/mllib/util.py +659 -0
  241. snowflake/snowpark_connect/includes/python/pyspark/pandas/__init__.py +165 -0
  242. snowflake/snowpark_connect/includes/python/pyspark/pandas/_typing.py +52 -0
  243. snowflake/snowpark_connect/includes/python/pyspark/pandas/accessors.py +989 -0
  244. snowflake/snowpark_connect/includes/python/pyspark/pandas/base.py +1804 -0
  245. snowflake/snowpark_connect/includes/python/pyspark/pandas/categorical.py +822 -0
  246. snowflake/snowpark_connect/includes/python/pyspark/pandas/config.py +539 -0
  247. snowflake/snowpark_connect/includes/python/pyspark/pandas/correlation.py +262 -0
  248. snowflake/snowpark_connect/includes/python/pyspark/pandas/data_type_ops/__init__.py +16 -0
  249. snowflake/snowpark_connect/includes/python/pyspark/pandas/data_type_ops/base.py +519 -0
  250. snowflake/snowpark_connect/includes/python/pyspark/pandas/data_type_ops/binary_ops.py +98 -0
  251. snowflake/snowpark_connect/includes/python/pyspark/pandas/data_type_ops/boolean_ops.py +426 -0
  252. snowflake/snowpark_connect/includes/python/pyspark/pandas/data_type_ops/categorical_ops.py +141 -0
  253. snowflake/snowpark_connect/includes/python/pyspark/pandas/data_type_ops/complex_ops.py +145 -0
  254. snowflake/snowpark_connect/includes/python/pyspark/pandas/data_type_ops/date_ops.py +127 -0
  255. snowflake/snowpark_connect/includes/python/pyspark/pandas/data_type_ops/datetime_ops.py +171 -0
  256. snowflake/snowpark_connect/includes/python/pyspark/pandas/data_type_ops/null_ops.py +83 -0
  257. snowflake/snowpark_connect/includes/python/pyspark/pandas/data_type_ops/num_ops.py +588 -0
  258. snowflake/snowpark_connect/includes/python/pyspark/pandas/data_type_ops/string_ops.py +154 -0
  259. snowflake/snowpark_connect/includes/python/pyspark/pandas/data_type_ops/timedelta_ops.py +101 -0
  260. snowflake/snowpark_connect/includes/python/pyspark/pandas/data_type_ops/udt_ops.py +29 -0
  261. snowflake/snowpark_connect/includes/python/pyspark/pandas/datetimes.py +891 -0
  262. snowflake/snowpark_connect/includes/python/pyspark/pandas/exceptions.py +150 -0
  263. snowflake/snowpark_connect/includes/python/pyspark/pandas/extensions.py +388 -0
  264. snowflake/snowpark_connect/includes/python/pyspark/pandas/frame.py +13738 -0
  265. snowflake/snowpark_connect/includes/python/pyspark/pandas/generic.py +3560 -0
  266. snowflake/snowpark_connect/includes/python/pyspark/pandas/groupby.py +4448 -0
  267. snowflake/snowpark_connect/includes/python/pyspark/pandas/indexes/__init__.py +21 -0
  268. snowflake/snowpark_connect/includes/python/pyspark/pandas/indexes/base.py +2783 -0
  269. snowflake/snowpark_connect/includes/python/pyspark/pandas/indexes/category.py +773 -0
  270. snowflake/snowpark_connect/includes/python/pyspark/pandas/indexes/datetimes.py +843 -0
  271. snowflake/snowpark_connect/includes/python/pyspark/pandas/indexes/multi.py +1323 -0
  272. snowflake/snowpark_connect/includes/python/pyspark/pandas/indexes/numeric.py +210 -0
  273. snowflake/snowpark_connect/includes/python/pyspark/pandas/indexes/timedelta.py +197 -0
  274. snowflake/snowpark_connect/includes/python/pyspark/pandas/indexing.py +1862 -0
  275. snowflake/snowpark_connect/includes/python/pyspark/pandas/internal.py +1680 -0
  276. snowflake/snowpark_connect/includes/python/pyspark/pandas/missing/__init__.py +48 -0
  277. snowflake/snowpark_connect/includes/python/pyspark/pandas/missing/common.py +76 -0
  278. snowflake/snowpark_connect/includes/python/pyspark/pandas/missing/frame.py +63 -0
  279. snowflake/snowpark_connect/includes/python/pyspark/pandas/missing/general_functions.py +43 -0
  280. snowflake/snowpark_connect/includes/python/pyspark/pandas/missing/groupby.py +93 -0
  281. snowflake/snowpark_connect/includes/python/pyspark/pandas/missing/indexes.py +184 -0
  282. snowflake/snowpark_connect/includes/python/pyspark/pandas/missing/resample.py +101 -0
  283. snowflake/snowpark_connect/includes/python/pyspark/pandas/missing/scalars.py +29 -0
  284. snowflake/snowpark_connect/includes/python/pyspark/pandas/missing/series.py +69 -0
  285. snowflake/snowpark_connect/includes/python/pyspark/pandas/missing/window.py +168 -0
  286. snowflake/snowpark_connect/includes/python/pyspark/pandas/mlflow.py +238 -0
  287. snowflake/snowpark_connect/includes/python/pyspark/pandas/namespace.py +3807 -0
  288. snowflake/snowpark_connect/includes/python/pyspark/pandas/numpy_compat.py +260 -0
  289. snowflake/snowpark_connect/includes/python/pyspark/pandas/plot/__init__.py +17 -0
  290. snowflake/snowpark_connect/includes/python/pyspark/pandas/plot/core.py +1213 -0
  291. snowflake/snowpark_connect/includes/python/pyspark/pandas/plot/matplotlib.py +928 -0
  292. snowflake/snowpark_connect/includes/python/pyspark/pandas/plot/plotly.py +261 -0
  293. snowflake/snowpark_connect/includes/python/pyspark/pandas/resample.py +816 -0
  294. snowflake/snowpark_connect/includes/python/pyspark/pandas/series.py +7440 -0
  295. snowflake/snowpark_connect/includes/python/pyspark/pandas/sql_formatter.py +308 -0
  296. snowflake/snowpark_connect/includes/python/pyspark/pandas/sql_processor.py +394 -0
  297. snowflake/snowpark_connect/includes/python/pyspark/pandas/strings.py +2371 -0
  298. snowflake/snowpark_connect/includes/python/pyspark/pandas/supported_api_gen.py +378 -0
  299. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/__init__.py +16 -0
  300. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/__init__.py +16 -0
  301. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_any_all.py +177 -0
  302. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_apply_func.py +575 -0
  303. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_binary_ops.py +235 -0
  304. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_combine.py +653 -0
  305. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_compute.py +463 -0
  306. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_corrwith.py +86 -0
  307. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cov.py +151 -0
  308. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cumulative.py +139 -0
  309. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_describe.py +458 -0
  310. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_eval.py +86 -0
  311. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_melt.py +202 -0
  312. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_missing_data.py +520 -0
  313. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_pivot.py +361 -0
  314. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/__init__.py +16 -0
  315. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/__init__.py +16 -0
  316. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_any_all.py +40 -0
  317. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_apply_func.py +42 -0
  318. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_binary_ops.py +40 -0
  319. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_combine.py +37 -0
  320. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_compute.py +60 -0
  321. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_corrwith.py +40 -0
  322. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cov.py +40 -0
  323. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cumulative.py +90 -0
  324. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_describe.py +40 -0
  325. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_eval.py +40 -0
  326. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_melt.py +40 -0
  327. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_missing_data.py +42 -0
  328. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_pivot.py +37 -0
  329. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/__init__.py +16 -0
  330. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_base.py +36 -0
  331. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_binary_ops.py +42 -0
  332. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_boolean_ops.py +47 -0
  333. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_categorical_ops.py +55 -0
  334. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_complex_ops.py +40 -0
  335. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_date_ops.py +47 -0
  336. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_datetime_ops.py +47 -0
  337. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_null_ops.py +42 -0
  338. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_arithmetic.py +43 -0
  339. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_ops.py +47 -0
  340. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_reverse.py +43 -0
  341. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_string_ops.py +47 -0
  342. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_timedelta_ops.py +47 -0
  343. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_udt_ops.py +40 -0
  344. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/testing_utils.py +226 -0
  345. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/__init__.py +16 -0
  346. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_align.py +39 -0
  347. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_basic_slow.py +55 -0
  348. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_cov_corrwith.py +39 -0
  349. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_frame.py +39 -0
  350. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_series.py +39 -0
  351. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_index.py +39 -0
  352. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_series.py +39 -0
  353. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_frame.py +43 -0
  354. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_series.py +43 -0
  355. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/__init__.py +16 -0
  356. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_attrs.py +40 -0
  357. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_constructor.py +39 -0
  358. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_conversion.py +42 -0
  359. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reindexing.py +42 -0
  360. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reshaping.py +37 -0
  361. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_spark.py +40 -0
  362. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_take.py +42 -0
  363. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_time_series.py +48 -0
  364. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_truncate.py +40 -0
  365. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/__init__.py +16 -0
  366. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_aggregate.py +40 -0
  367. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_apply_func.py +41 -0
  368. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_cumulative.py +67 -0
  369. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_describe.py +40 -0
  370. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_groupby.py +55 -0
  371. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_head_tail.py +40 -0
  372. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_index.py +38 -0
  373. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_missing_data.py +55 -0
  374. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_split_apply.py +39 -0
  375. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_stat.py +38 -0
  376. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/__init__.py +16 -0
  377. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_align.py +40 -0
  378. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_base.py +50 -0
  379. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_category.py +73 -0
  380. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_datetime.py +39 -0
  381. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_indexing.py +40 -0
  382. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reindex.py +40 -0
  383. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_rename.py +40 -0
  384. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reset_index.py +48 -0
  385. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_timedelta.py +39 -0
  386. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/__init__.py +16 -0
  387. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/test_parity_io.py +40 -0
  388. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/__init__.py +16 -0
  389. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot.py +45 -0
  390. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_matplotlib.py +45 -0
  391. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_plotly.py +49 -0
  392. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot.py +37 -0
  393. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_matplotlib.py +53 -0
  394. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_plotly.py +45 -0
  395. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/__init__.py +16 -0
  396. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_all_any.py +38 -0
  397. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_arg_ops.py +37 -0
  398. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_of.py +37 -0
  399. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_type.py +38 -0
  400. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_compute.py +37 -0
  401. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_conversion.py +40 -0
  402. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_cumulative.py +40 -0
  403. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_index.py +38 -0
  404. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_missing_data.py +40 -0
  405. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_series.py +37 -0
  406. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_sort.py +38 -0
  407. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_stat.py +38 -0
  408. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_categorical.py +66 -0
  409. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_config.py +37 -0
  410. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_csv.py +37 -0
  411. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_conversion.py +42 -0
  412. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_spark_io.py +39 -0
  413. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_default_index.py +49 -0
  414. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ewm.py +37 -0
  415. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_expanding.py +39 -0
  416. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_extension.py +49 -0
  417. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_frame_spark.py +53 -0
  418. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_generic_functions.py +43 -0
  419. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexing.py +49 -0
  420. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexops_spark.py +39 -0
  421. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_internal.py +41 -0
  422. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_namespace.py +39 -0
  423. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_numpy_compat.py +60 -0
  424. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames.py +48 -0
  425. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby.py +39 -0
  426. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_expanding.py +44 -0
  427. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_rolling.py +84 -0
  428. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_repr.py +37 -0
  429. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_resample.py +45 -0
  430. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_reshape.py +39 -0
  431. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_rolling.py +39 -0
  432. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_scalars.py +37 -0
  433. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_conversion.py +39 -0
  434. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_datetime.py +39 -0
  435. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_string.py +39 -0
  436. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_spark_functions.py +39 -0
  437. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_sql.py +43 -0
  438. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_stats.py +37 -0
  439. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_typedef.py +36 -0
  440. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_utils.py +37 -0
  441. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_window.py +39 -0
  442. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/__init__.py +16 -0
  443. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_base.py +107 -0
  444. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_binary_ops.py +224 -0
  445. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_boolean_ops.py +825 -0
  446. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_categorical_ops.py +562 -0
  447. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_complex_ops.py +368 -0
  448. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_date_ops.py +257 -0
  449. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_datetime_ops.py +260 -0
  450. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_null_ops.py +178 -0
  451. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_arithmetic.py +184 -0
  452. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_ops.py +497 -0
  453. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_reverse.py +140 -0
  454. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_string_ops.py +354 -0
  455. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_timedelta_ops.py +219 -0
  456. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_udt_ops.py +192 -0
  457. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/testing_utils.py +228 -0
  458. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/__init__.py +16 -0
  459. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_align.py +118 -0
  460. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_basic_slow.py +198 -0
  461. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_cov_corrwith.py +181 -0
  462. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_frame.py +103 -0
  463. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_series.py +141 -0
  464. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_index.py +109 -0
  465. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_series.py +136 -0
  466. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_frame.py +125 -0
  467. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_series.py +217 -0
  468. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/__init__.py +16 -0
  469. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_attrs.py +384 -0
  470. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_constructor.py +598 -0
  471. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_conversion.py +73 -0
  472. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reindexing.py +869 -0
  473. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reshaping.py +487 -0
  474. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_spark.py +309 -0
  475. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_take.py +156 -0
  476. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_time_series.py +149 -0
  477. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_truncate.py +163 -0
  478. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/__init__.py +16 -0
  479. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_aggregate.py +311 -0
  480. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_apply_func.py +524 -0
  481. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_cumulative.py +419 -0
  482. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_describe.py +144 -0
  483. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_groupby.py +979 -0
  484. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_head_tail.py +234 -0
  485. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_index.py +206 -0
  486. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_missing_data.py +421 -0
  487. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_split_apply.py +187 -0
  488. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_stat.py +397 -0
  489. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/__init__.py +16 -0
  490. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_align.py +100 -0
  491. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_base.py +2743 -0
  492. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_category.py +484 -0
  493. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_datetime.py +276 -0
  494. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_indexing.py +432 -0
  495. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reindex.py +310 -0
  496. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_rename.py +257 -0
  497. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reset_index.py +160 -0
  498. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_timedelta.py +128 -0
  499. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/__init__.py +16 -0
  500. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/test_io.py +137 -0
  501. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/__init__.py +16 -0
  502. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot.py +170 -0
  503. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_matplotlib.py +547 -0
  504. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_plotly.py +285 -0
  505. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot.py +106 -0
  506. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_matplotlib.py +409 -0
  507. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_plotly.py +247 -0
  508. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/__init__.py +16 -0
  509. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_all_any.py +105 -0
  510. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_arg_ops.py +197 -0
  511. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_of.py +137 -0
  512. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_type.py +227 -0
  513. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_compute.py +634 -0
  514. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_conversion.py +88 -0
  515. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_cumulative.py +139 -0
  516. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_index.py +475 -0
  517. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_missing_data.py +265 -0
  518. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_series.py +818 -0
  519. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_sort.py +162 -0
  520. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_stat.py +780 -0
  521. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_categorical.py +741 -0
  522. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_config.py +160 -0
  523. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_csv.py +453 -0
  524. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_conversion.py +281 -0
  525. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_spark_io.py +487 -0
  526. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_default_index.py +109 -0
  527. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ewm.py +434 -0
  528. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_expanding.py +253 -0
  529. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_extension.py +152 -0
  530. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_frame_spark.py +162 -0
  531. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_generic_functions.py +234 -0
  532. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexing.py +1339 -0
  533. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexops_spark.py +82 -0
  534. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_internal.py +124 -0
  535. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_namespace.py +638 -0
  536. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_numpy_compat.py +200 -0
  537. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames.py +1355 -0
  538. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby.py +655 -0
  539. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_expanding.py +113 -0
  540. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_rolling.py +118 -0
  541. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_repr.py +192 -0
  542. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_resample.py +346 -0
  543. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_reshape.py +495 -0
  544. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_rolling.py +263 -0
  545. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_scalars.py +59 -0
  546. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_conversion.py +85 -0
  547. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_datetime.py +364 -0
  548. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_string.py +362 -0
  549. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_spark_functions.py +46 -0
  550. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_sql.py +123 -0
  551. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_stats.py +581 -0
  552. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_typedef.py +447 -0
  553. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_utils.py +301 -0
  554. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_window.py +465 -0
  555. snowflake/snowpark_connect/includes/python/pyspark/pandas/typedef/__init__.py +18 -0
  556. snowflake/snowpark_connect/includes/python/pyspark/pandas/typedef/typehints.py +874 -0
  557. snowflake/snowpark_connect/includes/python/pyspark/pandas/usage_logging/__init__.py +143 -0
  558. snowflake/snowpark_connect/includes/python/pyspark/pandas/usage_logging/usage_logger.py +132 -0
  559. snowflake/snowpark_connect/includes/python/pyspark/pandas/utils.py +1063 -0
  560. snowflake/snowpark_connect/includes/python/pyspark/pandas/window.py +2702 -0
  561. snowflake/snowpark_connect/includes/python/pyspark/profiler.py +489 -0
  562. snowflake/snowpark_connect/includes/python/pyspark/py.typed +1 -0
  563. snowflake/snowpark_connect/includes/python/pyspark/python/pyspark/shell.py +123 -0
  564. snowflake/snowpark_connect/includes/python/pyspark/rdd.py +5518 -0
  565. snowflake/snowpark_connect/includes/python/pyspark/rddsampler.py +115 -0
  566. snowflake/snowpark_connect/includes/python/pyspark/resource/__init__.py +38 -0
  567. snowflake/snowpark_connect/includes/python/pyspark/resource/information.py +69 -0
  568. snowflake/snowpark_connect/includes/python/pyspark/resource/profile.py +317 -0
  569. snowflake/snowpark_connect/includes/python/pyspark/resource/requests.py +539 -0
  570. snowflake/snowpark_connect/includes/python/pyspark/resource/tests/__init__.py +16 -0
  571. snowflake/snowpark_connect/includes/python/pyspark/resource/tests/test_resources.py +83 -0
  572. snowflake/snowpark_connect/includes/python/pyspark/resultiterable.py +45 -0
  573. snowflake/snowpark_connect/includes/python/pyspark/serializers.py +681 -0
  574. snowflake/snowpark_connect/includes/python/pyspark/shell.py +123 -0
  575. snowflake/snowpark_connect/includes/python/pyspark/shuffle.py +854 -0
  576. snowflake/snowpark_connect/includes/python/pyspark/sql/__init__.py +75 -0
  577. snowflake/snowpark_connect/includes/python/pyspark/sql/_typing.pyi +80 -0
  578. snowflake/snowpark_connect/includes/python/pyspark/sql/avro/__init__.py +18 -0
  579. snowflake/snowpark_connect/includes/python/pyspark/sql/avro/functions.py +188 -0
  580. snowflake/snowpark_connect/includes/python/pyspark/sql/catalog.py +1270 -0
  581. snowflake/snowpark_connect/includes/python/pyspark/sql/column.py +1431 -0
  582. snowflake/snowpark_connect/includes/python/pyspark/sql/conf.py +99 -0
  583. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/__init__.py +18 -0
  584. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/_typing.py +90 -0
  585. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/avro/__init__.py +18 -0
  586. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/avro/functions.py +107 -0
  587. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/catalog.py +356 -0
  588. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/client/__init__.py +22 -0
  589. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/client/artifact.py +412 -0
  590. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/client/core.py +1689 -0
  591. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/client/reattach.py +340 -0
  592. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/column.py +514 -0
  593. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/conf.py +128 -0
  594. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/conversion.py +490 -0
  595. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/dataframe.py +2172 -0
  596. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/expressions.py +1056 -0
  597. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/functions.py +3937 -0
  598. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/group.py +418 -0
  599. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/plan.py +2289 -0
  600. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/__init__.py +25 -0
  601. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/base_pb2.py +203 -0
  602. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/base_pb2.pyi +2718 -0
  603. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/base_pb2_grpc.py +423 -0
  604. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/catalog_pb2.py +109 -0
  605. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/catalog_pb2.pyi +1130 -0
  606. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/commands_pb2.py +141 -0
  607. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/commands_pb2.pyi +1766 -0
  608. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/common_pb2.py +47 -0
  609. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/common_pb2.pyi +123 -0
  610. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/example_plugins_pb2.py +53 -0
  611. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/example_plugins_pb2.pyi +112 -0
  612. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/expressions_pb2.py +107 -0
  613. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/expressions_pb2.pyi +1507 -0
  614. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/relations_pb2.py +195 -0
  615. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/relations_pb2.pyi +3613 -0
  616. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/types_pb2.py +95 -0
  617. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/proto/types_pb2.pyi +980 -0
  618. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/protobuf/__init__.py +18 -0
  619. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/protobuf/functions.py +166 -0
  620. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/readwriter.py +861 -0
  621. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/session.py +952 -0
  622. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/streaming/__init__.py +22 -0
  623. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/streaming/query.py +295 -0
  624. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/streaming/readwriter.py +618 -0
  625. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/streaming/worker/__init__.py +18 -0
  626. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/streaming/worker/foreach_batch_worker.py +87 -0
  627. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/streaming/worker/listener_worker.py +100 -0
  628. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/types.py +301 -0
  629. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/udf.py +296 -0
  630. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/udtf.py +200 -0
  631. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/utils.py +58 -0
  632. snowflake/snowpark_connect/includes/python/pyspark/sql/connect/window.py +266 -0
  633. snowflake/snowpark_connect/includes/python/pyspark/sql/context.py +818 -0
  634. snowflake/snowpark_connect/includes/python/pyspark/sql/dataframe.py +5973 -0
  635. snowflake/snowpark_connect/includes/python/pyspark/sql/functions.py +15889 -0
  636. snowflake/snowpark_connect/includes/python/pyspark/sql/group.py +547 -0
  637. snowflake/snowpark_connect/includes/python/pyspark/sql/observation.py +152 -0
  638. snowflake/snowpark_connect/includes/python/pyspark/sql/pandas/__init__.py +21 -0
  639. snowflake/snowpark_connect/includes/python/pyspark/sql/pandas/_typing/__init__.pyi +344 -0
  640. snowflake/snowpark_connect/includes/python/pyspark/sql/pandas/_typing/protocols/__init__.pyi +17 -0
  641. snowflake/snowpark_connect/includes/python/pyspark/sql/pandas/_typing/protocols/frame.pyi +20 -0
  642. snowflake/snowpark_connect/includes/python/pyspark/sql/pandas/_typing/protocols/series.pyi +20 -0
  643. snowflake/snowpark_connect/includes/python/pyspark/sql/pandas/conversion.py +671 -0
  644. snowflake/snowpark_connect/includes/python/pyspark/sql/pandas/functions.py +480 -0
  645. snowflake/snowpark_connect/includes/python/pyspark/sql/pandas/functions.pyi +132 -0
  646. snowflake/snowpark_connect/includes/python/pyspark/sql/pandas/group_ops.py +523 -0
  647. snowflake/snowpark_connect/includes/python/pyspark/sql/pandas/map_ops.py +216 -0
  648. snowflake/snowpark_connect/includes/python/pyspark/sql/pandas/serializers.py +1019 -0
  649. snowflake/snowpark_connect/includes/python/pyspark/sql/pandas/typehints.py +172 -0
  650. snowflake/snowpark_connect/includes/python/pyspark/sql/pandas/types.py +972 -0
  651. snowflake/snowpark_connect/includes/python/pyspark/sql/pandas/utils.py +86 -0
  652. snowflake/snowpark_connect/includes/python/pyspark/sql/protobuf/__init__.py +18 -0
  653. snowflake/snowpark_connect/includes/python/pyspark/sql/protobuf/functions.py +334 -0
  654. snowflake/snowpark_connect/includes/python/pyspark/sql/readwriter.py +2159 -0
  655. snowflake/snowpark_connect/includes/python/pyspark/sql/session.py +2088 -0
  656. snowflake/snowpark_connect/includes/python/pyspark/sql/sql_formatter.py +84 -0
  657. snowflake/snowpark_connect/includes/python/pyspark/sql/streaming/__init__.py +21 -0
  658. snowflake/snowpark_connect/includes/python/pyspark/sql/streaming/listener.py +1050 -0
  659. snowflake/snowpark_connect/includes/python/pyspark/sql/streaming/query.py +746 -0
  660. snowflake/snowpark_connect/includes/python/pyspark/sql/streaming/readwriter.py +1652 -0
  661. snowflake/snowpark_connect/includes/python/pyspark/sql/streaming/state.py +288 -0
  662. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/__init__.py +16 -0
  663. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/__init__.py +16 -0
  664. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/__init__.py +16 -0
  665. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_artifact.py +420 -0
  666. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_client.py +358 -0
  667. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/__init__.py +16 -0
  668. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach.py +36 -0
  669. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach_batch.py +44 -0
  670. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_listener.py +116 -0
  671. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_streaming.py +35 -0
  672. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_basic.py +3612 -0
  673. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_column.py +1042 -0
  674. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_function.py +2381 -0
  675. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_plan.py +1060 -0
  676. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow.py +163 -0
  677. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_map.py +38 -0
  678. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_python_udf.py +48 -0
  679. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_catalog.py +36 -0
  680. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_column.py +55 -0
  681. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_conf.py +36 -0
  682. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_dataframe.py +96 -0
  683. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_datasources.py +44 -0
  684. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_errors.py +36 -0
  685. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_functions.py +59 -0
  686. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_group.py +36 -0
  687. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_cogrouped_map.py +59 -0
  688. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map.py +74 -0
  689. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map_with_state.py +62 -0
  690. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_map.py +58 -0
  691. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf.py +70 -0
  692. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_grouped_agg.py +50 -0
  693. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_scalar.py +68 -0
  694. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_window.py +40 -0
  695. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_readwriter.py +46 -0
  696. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_serde.py +44 -0
  697. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_types.py +100 -0
  698. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udf.py +100 -0
  699. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udtf.py +163 -0
  700. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_session.py +181 -0
  701. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_utils.py +42 -0
  702. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/__init__.py +16 -0
  703. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_cogrouped_map.py +623 -0
  704. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map.py +869 -0
  705. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map_with_state.py +342 -0
  706. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_map.py +436 -0
  707. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf.py +363 -0
  708. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_grouped_agg.py +592 -0
  709. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_scalar.py +1503 -0
  710. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints.py +392 -0
  711. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints_with_future_annotations.py +375 -0
  712. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_window.py +411 -0
  713. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/__init__.py +16 -0
  714. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming.py +401 -0
  715. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach.py +295 -0
  716. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach_batch.py +106 -0
  717. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_listener.py +558 -0
  718. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow.py +1346 -0
  719. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_map.py +182 -0
  720. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_python_udf.py +202 -0
  721. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_catalog.py +503 -0
  722. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_column.py +225 -0
  723. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_conf.py +83 -0
  724. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_context.py +201 -0
  725. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_dataframe.py +1931 -0
  726. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_datasources.py +256 -0
  727. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_errors.py +69 -0
  728. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_functions.py +1349 -0
  729. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_group.py +53 -0
  730. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_pandas_sqlmetrics.py +68 -0
  731. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_readwriter.py +283 -0
  732. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_serde.py +155 -0
  733. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_session.py +412 -0
  734. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_types.py +1581 -0
  735. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf.py +961 -0
  736. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf_profiler.py +165 -0
  737. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udtf.py +1456 -0
  738. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_utils.py +1686 -0
  739. snowflake/snowpark_connect/includes/python/pyspark/sql/types.py +2558 -0
  740. snowflake/snowpark_connect/includes/python/pyspark/sql/udf.py +714 -0
  741. snowflake/snowpark_connect/includes/python/pyspark/sql/udtf.py +325 -0
  742. snowflake/snowpark_connect/includes/python/pyspark/sql/utils.py +339 -0
  743. snowflake/snowpark_connect/includes/python/pyspark/sql/window.py +492 -0
  744. snowflake/snowpark_connect/includes/python/pyspark/statcounter.py +165 -0
  745. snowflake/snowpark_connect/includes/python/pyspark/status.py +112 -0
  746. snowflake/snowpark_connect/includes/python/pyspark/storagelevel.py +97 -0
  747. snowflake/snowpark_connect/includes/python/pyspark/streaming/__init__.py +22 -0
  748. snowflake/snowpark_connect/includes/python/pyspark/streaming/context.py +471 -0
  749. snowflake/snowpark_connect/includes/python/pyspark/streaming/dstream.py +933 -0
  750. snowflake/snowpark_connect/includes/python/pyspark/streaming/kinesis.py +205 -0
  751. snowflake/snowpark_connect/includes/python/pyspark/streaming/listener.py +83 -0
  752. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/__init__.py +16 -0
  753. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_context.py +184 -0
  754. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_dstream.py +706 -0
  755. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_kinesis.py +118 -0
  756. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_listener.py +160 -0
  757. snowflake/snowpark_connect/includes/python/pyspark/streaming/util.py +168 -0
  758. snowflake/snowpark_connect/includes/python/pyspark/taskcontext.py +502 -0
  759. snowflake/snowpark_connect/includes/python/pyspark/testing/__init__.py +21 -0
  760. snowflake/snowpark_connect/includes/python/pyspark/testing/connectutils.py +199 -0
  761. snowflake/snowpark_connect/includes/python/pyspark/testing/mllibutils.py +30 -0
  762. snowflake/snowpark_connect/includes/python/pyspark/testing/mlutils.py +275 -0
  763. snowflake/snowpark_connect/includes/python/pyspark/testing/objects.py +121 -0
  764. snowflake/snowpark_connect/includes/python/pyspark/testing/pandasutils.py +714 -0
  765. snowflake/snowpark_connect/includes/python/pyspark/testing/sqlutils.py +168 -0
  766. snowflake/snowpark_connect/includes/python/pyspark/testing/streamingutils.py +178 -0
  767. snowflake/snowpark_connect/includes/python/pyspark/testing/utils.py +636 -0
  768. snowflake/snowpark_connect/includes/python/pyspark/tests/__init__.py +16 -0
  769. snowflake/snowpark_connect/includes/python/pyspark/tests/test_appsubmit.py +306 -0
  770. snowflake/snowpark_connect/includes/python/pyspark/tests/test_broadcast.py +196 -0
  771. snowflake/snowpark_connect/includes/python/pyspark/tests/test_conf.py +44 -0
  772. snowflake/snowpark_connect/includes/python/pyspark/tests/test_context.py +346 -0
  773. snowflake/snowpark_connect/includes/python/pyspark/tests/test_daemon.py +89 -0
  774. snowflake/snowpark_connect/includes/python/pyspark/tests/test_install_spark.py +124 -0
  775. snowflake/snowpark_connect/includes/python/pyspark/tests/test_join.py +69 -0
  776. snowflake/snowpark_connect/includes/python/pyspark/tests/test_memory_profiler.py +167 -0
  777. snowflake/snowpark_connect/includes/python/pyspark/tests/test_pin_thread.py +194 -0
  778. snowflake/snowpark_connect/includes/python/pyspark/tests/test_profiler.py +168 -0
  779. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rdd.py +939 -0
  780. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddbarrier.py +52 -0
  781. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddsampler.py +66 -0
  782. snowflake/snowpark_connect/includes/python/pyspark/tests/test_readwrite.py +368 -0
  783. snowflake/snowpark_connect/includes/python/pyspark/tests/test_serializers.py +257 -0
  784. snowflake/snowpark_connect/includes/python/pyspark/tests/test_shuffle.py +267 -0
  785. snowflake/snowpark_connect/includes/python/pyspark/tests/test_stage_sched.py +153 -0
  786. snowflake/snowpark_connect/includes/python/pyspark/tests/test_statcounter.py +130 -0
  787. snowflake/snowpark_connect/includes/python/pyspark/tests/test_taskcontext.py +350 -0
  788. snowflake/snowpark_connect/includes/python/pyspark/tests/test_util.py +97 -0
  789. snowflake/snowpark_connect/includes/python/pyspark/tests/test_worker.py +271 -0
  790. snowflake/snowpark_connect/includes/python/pyspark/traceback_utils.py +81 -0
  791. snowflake/snowpark_connect/includes/python/pyspark/util.py +416 -0
  792. snowflake/snowpark_connect/includes/python/pyspark/version.py +19 -0
  793. snowflake/snowpark_connect/includes/python/pyspark/worker.py +1307 -0
  794. snowflake/snowpark_connect/includes/python/pyspark/worker_util.py +46 -0
  795. snowflake/snowpark_connect/proto/__init__.py +10 -0
  796. snowflake/snowpark_connect/proto/control_pb2.py +35 -0
  797. snowflake/snowpark_connect/proto/control_pb2.pyi +38 -0
  798. snowflake/snowpark_connect/proto/control_pb2_grpc.py +183 -0
  799. snowflake/snowpark_connect/proto/snowflake_expression_ext_pb2.py +35 -0
  800. snowflake/snowpark_connect/proto/snowflake_expression_ext_pb2.pyi +53 -0
  801. snowflake/snowpark_connect/proto/snowflake_rdd_pb2.pyi +39 -0
  802. snowflake/snowpark_connect/proto/snowflake_relation_ext_pb2.py +47 -0
  803. snowflake/snowpark_connect/proto/snowflake_relation_ext_pb2.pyi +111 -0
  804. snowflake/snowpark_connect/relation/__init__.py +3 -0
  805. snowflake/snowpark_connect/relation/catalogs/__init__.py +12 -0
  806. snowflake/snowpark_connect/relation/catalogs/abstract_spark_catalog.py +287 -0
  807. snowflake/snowpark_connect/relation/catalogs/snowflake_catalog.py +467 -0
  808. snowflake/snowpark_connect/relation/catalogs/utils.py +51 -0
  809. snowflake/snowpark_connect/relation/io_utils.py +76 -0
  810. snowflake/snowpark_connect/relation/map_aggregate.py +322 -0
  811. snowflake/snowpark_connect/relation/map_catalog.py +151 -0
  812. snowflake/snowpark_connect/relation/map_column_ops.py +1068 -0
  813. snowflake/snowpark_connect/relation/map_crosstab.py +48 -0
  814. snowflake/snowpark_connect/relation/map_extension.py +412 -0
  815. snowflake/snowpark_connect/relation/map_join.py +341 -0
  816. snowflake/snowpark_connect/relation/map_local_relation.py +326 -0
  817. snowflake/snowpark_connect/relation/map_map_partitions.py +146 -0
  818. snowflake/snowpark_connect/relation/map_relation.py +253 -0
  819. snowflake/snowpark_connect/relation/map_row_ops.py +716 -0
  820. snowflake/snowpark_connect/relation/map_sample_by.py +35 -0
  821. snowflake/snowpark_connect/relation/map_show_string.py +50 -0
  822. snowflake/snowpark_connect/relation/map_sql.py +1874 -0
  823. snowflake/snowpark_connect/relation/map_stats.py +324 -0
  824. snowflake/snowpark_connect/relation/map_subquery_alias.py +32 -0
  825. snowflake/snowpark_connect/relation/map_udtf.py +288 -0
  826. snowflake/snowpark_connect/relation/read/__init__.py +7 -0
  827. snowflake/snowpark_connect/relation/read/jdbc_read_dbapi.py +668 -0
  828. snowflake/snowpark_connect/relation/read/map_read.py +367 -0
  829. snowflake/snowpark_connect/relation/read/map_read_csv.py +142 -0
  830. snowflake/snowpark_connect/relation/read/map_read_jdbc.py +108 -0
  831. snowflake/snowpark_connect/relation/read/map_read_json.py +344 -0
  832. snowflake/snowpark_connect/relation/read/map_read_parquet.py +194 -0
  833. snowflake/snowpark_connect/relation/read/map_read_socket.py +59 -0
  834. snowflake/snowpark_connect/relation/read/map_read_table.py +109 -0
  835. snowflake/snowpark_connect/relation/read/map_read_text.py +106 -0
  836. snowflake/snowpark_connect/relation/read/reader_config.py +399 -0
  837. snowflake/snowpark_connect/relation/read/utils.py +155 -0
  838. snowflake/snowpark_connect/relation/stage_locator.py +161 -0
  839. snowflake/snowpark_connect/relation/utils.py +219 -0
  840. snowflake/snowpark_connect/relation/write/__init__.py +3 -0
  841. snowflake/snowpark_connect/relation/write/jdbc_write_dbapi.py +339 -0
  842. snowflake/snowpark_connect/relation/write/map_write.py +436 -0
  843. snowflake/snowpark_connect/relation/write/map_write_jdbc.py +48 -0
  844. snowflake/snowpark_connect/resources/java_udfs-1.0-SNAPSHOT.jar +0 -0
  845. snowflake/snowpark_connect/resources_initializer.py +75 -0
  846. snowflake/snowpark_connect/server.py +1136 -0
  847. snowflake/snowpark_connect/start_server.py +32 -0
  848. snowflake/snowpark_connect/tcm.py +8 -0
  849. snowflake/snowpark_connect/type_mapping.py +1003 -0
  850. snowflake/snowpark_connect/typed_column.py +94 -0
  851. snowflake/snowpark_connect/utils/__init__.py +3 -0
  852. snowflake/snowpark_connect/utils/artifacts.py +48 -0
  853. snowflake/snowpark_connect/utils/attribute_handling.py +72 -0
  854. snowflake/snowpark_connect/utils/cache.py +84 -0
  855. snowflake/snowpark_connect/utils/concurrent.py +124 -0
  856. snowflake/snowpark_connect/utils/context.py +390 -0
  857. snowflake/snowpark_connect/utils/describe_query_cache.py +231 -0
  858. snowflake/snowpark_connect/utils/interrupt.py +85 -0
  859. snowflake/snowpark_connect/utils/io_utils.py +35 -0
  860. snowflake/snowpark_connect/utils/pandas_udtf_utils.py +117 -0
  861. snowflake/snowpark_connect/utils/profiling.py +47 -0
  862. snowflake/snowpark_connect/utils/session.py +180 -0
  863. snowflake/snowpark_connect/utils/snowpark_connect_logging.py +38 -0
  864. snowflake/snowpark_connect/utils/telemetry.py +513 -0
  865. snowflake/snowpark_connect/utils/udf_cache.py +392 -0
  866. snowflake/snowpark_connect/utils/udf_helper.py +328 -0
  867. snowflake/snowpark_connect/utils/udf_utils.py +310 -0
  868. snowflake/snowpark_connect/utils/udtf_helper.py +420 -0
  869. snowflake/snowpark_connect/utils/udtf_utils.py +799 -0
  870. snowflake/snowpark_connect/utils/xxhash64.py +247 -0
  871. snowflake/snowpark_connect/version.py +6 -0
  872. snowpark_connect-0.20.2.data/scripts/snowpark-connect +71 -0
  873. snowpark_connect-0.20.2.data/scripts/snowpark-session +11 -0
  874. snowpark_connect-0.20.2.data/scripts/snowpark-submit +354 -0
  875. snowpark_connect-0.20.2.dist-info/METADATA +37 -0
  876. snowpark_connect-0.20.2.dist-info/RECORD +879 -0
  877. snowpark_connect-0.20.2.dist-info/WHEEL +5 -0
  878. snowpark_connect-0.20.2.dist-info/licenses/LICENSE.txt +202 -0
  879. snowpark_connect-0.20.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1653 @@
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
+
18
+ """
19
+ MLlib utilities for linear algebra. For dense vectors, MLlib
20
+ uses the NumPy `array` type, so you can simply pass NumPy arrays
21
+ around. For sparse vectors, users can construct a :class:`SparseVector`
22
+ object from MLlib or pass SciPy `scipy.sparse` column vectors if
23
+ SciPy is available in their environment.
24
+ """
25
+
26
+ import sys
27
+ import array
28
+ import struct
29
+
30
+ import numpy as np
31
+
32
+ from pyspark import since
33
+ from pyspark.ml import linalg as newlinalg
34
+ from pyspark.sql.types import (
35
+ UserDefinedType,
36
+ StructField,
37
+ StructType,
38
+ ArrayType,
39
+ DoubleType,
40
+ IntegerType,
41
+ ByteType,
42
+ BooleanType,
43
+ )
44
+
45
+ from typing import (
46
+ Any,
47
+ Callable,
48
+ cast,
49
+ Dict,
50
+ Generic,
51
+ Iterable,
52
+ List,
53
+ Optional,
54
+ overload,
55
+ Sequence,
56
+ Tuple,
57
+ Type,
58
+ TypeVar,
59
+ TYPE_CHECKING,
60
+ Union,
61
+ )
62
+
63
+ if TYPE_CHECKING:
64
+ from pyspark.mllib._typing import VectorLike, NormType
65
+ from scipy.sparse import spmatrix
66
+ from numpy.typing import ArrayLike
67
+
68
+
69
+ QT = TypeVar("QT")
70
+ RT = TypeVar("RT")
71
+
72
+
73
+ __all__ = [
74
+ "Vector",
75
+ "DenseVector",
76
+ "SparseVector",
77
+ "Vectors",
78
+ "Matrix",
79
+ "DenseMatrix",
80
+ "SparseMatrix",
81
+ "Matrices",
82
+ "QRDecomposition",
83
+ ]
84
+
85
+
86
+ # Check whether we have SciPy. MLlib works without it too, but if we have it, some methods,
87
+ # such as _dot and _serialize_double_vector, start to support scipy.sparse matrices.
88
+
89
+ try:
90
+ import scipy.sparse
91
+
92
+ _have_scipy = True
93
+ except BaseException:
94
+ # No SciPy in environment, but that's okay
95
+ _have_scipy = False
96
+
97
+
98
+ def _convert_to_vector(d: Union["VectorLike", "spmatrix", range]) -> "Vector":
99
+ if isinstance(d, Vector):
100
+ return d
101
+ elif type(d) in (array.array, np.array, np.ndarray, list, tuple, range):
102
+ return DenseVector(d)
103
+ elif _have_scipy and scipy.sparse.issparse(d):
104
+ assert cast("spmatrix", d).shape[1] == 1, "Expected column vector"
105
+ # Make sure the converted csc_matrix has sorted indices.
106
+ csc = cast("spmatrix", d).tocsc()
107
+ if not csc.has_sorted_indices:
108
+ csc.sort_indices()
109
+ return SparseVector(cast("spmatrix", d).shape[0], csc.indices, csc.data)
110
+ else:
111
+ raise TypeError("Cannot convert type %s into Vector" % type(d))
112
+
113
+
114
+ def _vector_size(v: Union["VectorLike", "spmatrix", range]) -> int:
115
+ """
116
+ Returns the size of the vector.
117
+
118
+ Examples
119
+ --------
120
+ >>> _vector_size([1., 2., 3.])
121
+ 3
122
+ >>> _vector_size((1., 2., 3.))
123
+ 3
124
+ >>> _vector_size(array.array('d', [1., 2., 3.]))
125
+ 3
126
+ >>> _vector_size(np.zeros(3))
127
+ 3
128
+ >>> _vector_size(np.zeros((3, 1)))
129
+ 3
130
+ >>> _vector_size(np.zeros((1, 3)))
131
+ Traceback (most recent call last):
132
+ ...
133
+ ValueError: Cannot treat an ndarray of shape (1, 3) as a vector
134
+ """
135
+ if isinstance(v, Vector):
136
+ return len(v)
137
+ elif type(v) in (array.array, list, tuple, range):
138
+ return len(v)
139
+ elif type(v) == np.ndarray:
140
+ if v.ndim == 1 or (v.ndim == 2 and v.shape[1] == 1):
141
+ return len(v)
142
+ else:
143
+ raise ValueError("Cannot treat an ndarray of shape %s as a vector" % str(v.shape))
144
+ elif _have_scipy and scipy.sparse.issparse(v):
145
+ assert cast("spmatrix", v).shape[1] == 1, "Expected column vector"
146
+ return cast("spmatrix", v).shape[0]
147
+ else:
148
+ raise TypeError("Cannot treat type %s as a vector" % type(v))
149
+
150
+
151
+ def _format_float(f: float, digits: int = 4) -> str:
152
+ s = str(round(f, digits))
153
+ if "." in s:
154
+ s = s[: s.index(".") + 1 + digits]
155
+ return s
156
+
157
+
158
+ def _format_float_list(xs: Iterable[float]) -> List[str]:
159
+ return [_format_float(x) for x in xs]
160
+
161
+
162
+ def _double_to_long_bits(value: float) -> int:
163
+ if np.isnan(value):
164
+ value = float("nan")
165
+ # pack double into 64 bits, then unpack as long int
166
+ return struct.unpack("Q", struct.pack("d", value))[0]
167
+
168
+
169
+ class VectorUDT(UserDefinedType):
170
+ """
171
+ SQL user-defined type (UDT) for Vector.
172
+ """
173
+
174
+ @classmethod
175
+ def sqlType(cls) -> StructType:
176
+ return StructType(
177
+ [
178
+ StructField("type", ByteType(), False),
179
+ StructField("size", IntegerType(), True),
180
+ StructField("indices", ArrayType(IntegerType(), False), True),
181
+ StructField("values", ArrayType(DoubleType(), False), True),
182
+ ]
183
+ )
184
+
185
+ @classmethod
186
+ def module(cls) -> str:
187
+ return "pyspark.mllib.linalg"
188
+
189
+ @classmethod
190
+ def scalaUDT(cls) -> str:
191
+ return "org.apache.spark.mllib.linalg.VectorUDT"
192
+
193
+ def serialize(
194
+ self, obj: "Vector"
195
+ ) -> Tuple[int, Optional[int], Optional[List[int]], List[float]]:
196
+ if isinstance(obj, SparseVector):
197
+ indices = [int(i) for i in obj.indices]
198
+ values = [float(v) for v in obj.values]
199
+ return (0, obj.size, indices, values)
200
+ elif isinstance(obj, DenseVector):
201
+ values = [float(v) for v in obj] # type: ignore[attr-defined]
202
+ return (1, None, None, values)
203
+ else:
204
+ raise TypeError("cannot serialize %r of type %r" % (obj, type(obj)))
205
+
206
+ def deserialize(
207
+ self, datum: Tuple[int, Optional[int], Optional[List[int]], List[float]]
208
+ ) -> "Vector":
209
+ assert (
210
+ len(datum) == 4
211
+ ), "VectorUDT.deserialize given row with length %d but requires 4" % len(datum)
212
+ tpe = datum[0]
213
+ if tpe == 0:
214
+ return SparseVector(cast(int, datum[1]), cast(List[int], datum[2]), datum[3])
215
+ elif tpe == 1:
216
+ return DenseVector(datum[3])
217
+ else:
218
+ raise ValueError("do not recognize type %r" % tpe)
219
+
220
+ def simpleString(self) -> str:
221
+ return "vector"
222
+
223
+
224
+ class MatrixUDT(UserDefinedType):
225
+ """
226
+ SQL user-defined type (UDT) for Matrix.
227
+ """
228
+
229
+ @classmethod
230
+ def sqlType(cls) -> StructType:
231
+ return StructType(
232
+ [
233
+ StructField("type", ByteType(), False),
234
+ StructField("numRows", IntegerType(), False),
235
+ StructField("numCols", IntegerType(), False),
236
+ StructField("colPtrs", ArrayType(IntegerType(), False), True),
237
+ StructField("rowIndices", ArrayType(IntegerType(), False), True),
238
+ StructField("values", ArrayType(DoubleType(), False), True),
239
+ StructField("isTransposed", BooleanType(), False),
240
+ ]
241
+ )
242
+
243
+ @classmethod
244
+ def module(cls) -> str:
245
+ return "pyspark.mllib.linalg"
246
+
247
+ @classmethod
248
+ def scalaUDT(cls) -> str:
249
+ return "org.apache.spark.mllib.linalg.MatrixUDT"
250
+
251
+ def serialize(
252
+ self, obj: "Matrix"
253
+ ) -> Tuple[int, int, int, Optional[List[int]], Optional[List[int]], List[float], bool]:
254
+ if isinstance(obj, SparseMatrix):
255
+ colPtrs = [int(i) for i in obj.colPtrs]
256
+ rowIndices = [int(i) for i in obj.rowIndices]
257
+ values = [float(v) for v in obj.values]
258
+ return (
259
+ 0,
260
+ obj.numRows,
261
+ obj.numCols,
262
+ colPtrs,
263
+ rowIndices,
264
+ values,
265
+ bool(obj.isTransposed),
266
+ )
267
+ elif isinstance(obj, DenseMatrix):
268
+ values = [float(v) for v in obj.values]
269
+ return (1, obj.numRows, obj.numCols, None, None, values, bool(obj.isTransposed))
270
+ else:
271
+ raise TypeError("cannot serialize type %r" % (type(obj)))
272
+
273
+ def deserialize(
274
+ self,
275
+ datum: Tuple[int, int, int, Optional[List[int]], Optional[List[int]], List[float], bool],
276
+ ) -> "Matrix":
277
+ assert (
278
+ len(datum) == 7
279
+ ), "MatrixUDT.deserialize given row with length %d but requires 7" % len(datum)
280
+ tpe = datum[0]
281
+ if tpe == 0:
282
+ return SparseMatrix(
283
+ datum[1],
284
+ datum[2],
285
+ cast(List[int], datum[3]),
286
+ cast(List[int], datum[4]),
287
+ datum[5],
288
+ datum[6],
289
+ )
290
+ elif tpe == 1:
291
+ return DenseMatrix(datum[1], datum[2], datum[5], datum[6])
292
+ else:
293
+ raise ValueError("do not recognize type %r" % tpe)
294
+
295
+ def simpleString(self) -> str:
296
+ return "matrix"
297
+
298
+
299
+ class Vector:
300
+
301
+ __UDT__ = VectorUDT()
302
+
303
+ """
304
+ Abstract class for DenseVector and SparseVector
305
+ """
306
+
307
+ def toArray(self) -> np.ndarray:
308
+ """
309
+ Convert the vector into an numpy.ndarray
310
+
311
+ Returns
312
+ -------
313
+ :py:class:`numpy.ndarray`
314
+ """
315
+ raise NotImplementedError
316
+
317
+ def asML(self) -> newlinalg.Vector:
318
+ """
319
+ Convert this vector to the new mllib-local representation.
320
+ This does NOT copy the data; it copies references.
321
+
322
+ Returns
323
+ -------
324
+ :py:class:`pyspark.ml.linalg.Vector`
325
+ """
326
+ raise NotImplementedError
327
+
328
+ def __len__(self) -> int:
329
+ raise NotImplementedError
330
+
331
+
332
+ class DenseVector(Vector):
333
+ """
334
+ A dense vector represented by a value array. We use numpy array for
335
+ storage and arithmetics will be delegated to the underlying numpy
336
+ array.
337
+
338
+ Examples
339
+ --------
340
+ >>> v = Vectors.dense([1.0, 2.0])
341
+ >>> u = Vectors.dense([3.0, 4.0])
342
+ >>> v + u
343
+ DenseVector([4.0, 6.0])
344
+ >>> 2 - v
345
+ DenseVector([1.0, 0.0])
346
+ >>> v / 2
347
+ DenseVector([0.5, 1.0])
348
+ >>> v * u
349
+ DenseVector([3.0, 8.0])
350
+ >>> u / v
351
+ DenseVector([3.0, 2.0])
352
+ >>> u % 2
353
+ DenseVector([1.0, 0.0])
354
+ >>> -v
355
+ DenseVector([-1.0, -2.0])
356
+ """
357
+
358
+ def __init__(self, ar: Union[bytes, np.ndarray, Iterable[float]]):
359
+ ar_: np.ndarray
360
+ if isinstance(ar, bytes):
361
+ ar_ = np.frombuffer(ar, dtype=np.float64)
362
+ elif not isinstance(ar, np.ndarray):
363
+ ar_ = np.array(ar, dtype=np.float64)
364
+ else:
365
+ ar_ = ar.astype(np.float64) if ar.dtype != np.float64 else ar
366
+ self.array = ar_
367
+
368
+ @staticmethod
369
+ def parse(s: str) -> "DenseVector":
370
+ """
371
+ Parse string representation back into the DenseVector.
372
+
373
+ Examples
374
+ --------
375
+ >>> DenseVector.parse(' [ 0.0,1.0,2.0, 3.0]')
376
+ DenseVector([0.0, 1.0, 2.0, 3.0])
377
+ """
378
+ start = s.find("[")
379
+ if start == -1:
380
+ raise ValueError("Array should start with '['.")
381
+ end = s.find("]")
382
+ if end == -1:
383
+ raise ValueError("Array should end with ']'.")
384
+ s = s[start + 1 : end]
385
+
386
+ try:
387
+ values = [float(val) for val in s.split(",") if val]
388
+ except ValueError:
389
+ raise ValueError("Unable to parse values from %s" % s)
390
+ return DenseVector(values)
391
+
392
+ def __reduce__(self) -> Tuple[Type["DenseVector"], Tuple[bytes]]:
393
+ return DenseVector, (self.array.tobytes(),)
394
+
395
+ def numNonzeros(self) -> int:
396
+ """
397
+ Number of nonzero elements. This scans all active values and count non zeros
398
+ """
399
+ return np.count_nonzero(self.array)
400
+
401
+ def norm(self, p: "NormType") -> np.float64:
402
+ """
403
+ Calculates the norm of a DenseVector.
404
+
405
+ Examples
406
+ --------
407
+ >>> a = DenseVector([0, -1, 2, -3])
408
+ >>> a.norm(2)
409
+ 3.7...
410
+ >>> a.norm(1)
411
+ 6.0
412
+ """
413
+ return np.linalg.norm(self.array, p)
414
+
415
+ def dot(self, other: Iterable[float]) -> np.float64:
416
+ """
417
+ Compute the dot product of two Vectors. We support
418
+ (Numpy array, list, SparseVector, or SciPy sparse)
419
+ and a target NumPy array that is either 1- or 2-dimensional.
420
+ Equivalent to calling numpy.dot of the two vectors.
421
+
422
+ Examples
423
+ --------
424
+ >>> dense = DenseVector(array.array('d', [1., 2.]))
425
+ >>> dense.dot(dense)
426
+ 5.0
427
+ >>> dense.dot(SparseVector(2, [0, 1], [2., 1.]))
428
+ 4.0
429
+ >>> dense.dot(range(1, 3))
430
+ 5.0
431
+ >>> dense.dot(np.array(range(1, 3)))
432
+ 5.0
433
+ >>> dense.dot([1.,])
434
+ Traceback (most recent call last):
435
+ ...
436
+ AssertionError: dimension mismatch
437
+ >>> dense.dot(np.reshape([1., 2., 3., 4.], (2, 2), order='F'))
438
+ array([ 5., 11.])
439
+ >>> dense.dot(np.reshape([1., 2., 3.], (3, 1), order='F'))
440
+ Traceback (most recent call last):
441
+ ...
442
+ AssertionError: dimension mismatch
443
+ """
444
+ if type(other) == np.ndarray:
445
+ if other.ndim > 1:
446
+ assert len(self) == other.shape[0], "dimension mismatch"
447
+ return np.dot(self.array, other)
448
+ elif _have_scipy and scipy.sparse.issparse(other):
449
+ assert len(self) == cast("spmatrix", other).shape[0], "dimension mismatch"
450
+ return cast("spmatrix", other).transpose().dot(self.toArray())
451
+ else:
452
+ assert len(self) == _vector_size(other), "dimension mismatch"
453
+ if isinstance(other, SparseVector):
454
+ return other.dot(self)
455
+ elif isinstance(other, Vector):
456
+ return np.dot(self.toArray(), other.toArray())
457
+ else:
458
+ return np.dot(self.toArray(), cast("ArrayLike", other))
459
+
460
+ def squared_distance(self, other: Iterable[float]) -> np.float64:
461
+ """
462
+ Squared distance of two Vectors.
463
+
464
+ Examples
465
+ --------
466
+ >>> dense1 = DenseVector(array.array('d', [1., 2.]))
467
+ >>> dense1.squared_distance(dense1)
468
+ 0.0
469
+ >>> dense2 = np.array([2., 1.])
470
+ >>> dense1.squared_distance(dense2)
471
+ 2.0
472
+ >>> dense3 = [2., 1.]
473
+ >>> dense1.squared_distance(dense3)
474
+ 2.0
475
+ >>> sparse1 = SparseVector(2, [0, 1], [2., 1.])
476
+ >>> dense1.squared_distance(sparse1)
477
+ 2.0
478
+ >>> dense1.squared_distance([1.,])
479
+ Traceback (most recent call last):
480
+ ...
481
+ AssertionError: dimension mismatch
482
+ >>> dense1.squared_distance(SparseVector(1, [0,], [1.,]))
483
+ Traceback (most recent call last):
484
+ ...
485
+ AssertionError: dimension mismatch
486
+ """
487
+ assert len(self) == _vector_size(other), "dimension mismatch"
488
+ if isinstance(other, SparseVector):
489
+ return other.squared_distance(self)
490
+ elif _have_scipy and scipy.sparse.issparse(other):
491
+ return _convert_to_vector(other).squared_distance(self) # type: ignore[attr-defined]
492
+
493
+ if isinstance(other, Vector):
494
+ other = other.toArray()
495
+ elif not isinstance(other, np.ndarray):
496
+ other = np.array(other)
497
+ diff: np.ndarray = self.toArray() - other
498
+ return np.dot(diff, diff)
499
+
500
+ def toArray(self) -> np.ndarray:
501
+ """
502
+ Returns an numpy.ndarray
503
+ """
504
+ return self.array
505
+
506
+ def asML(self) -> newlinalg.DenseVector:
507
+ """
508
+ Convert this vector to the new mllib-local representation.
509
+ This does NOT copy the data; it copies references.
510
+
511
+ .. versionadded:: 2.0.0
512
+
513
+ Returns
514
+ -------
515
+ :py:class:`pyspark.ml.linalg.DenseVector`
516
+ """
517
+ return newlinalg.DenseVector(self.array)
518
+
519
+ @property
520
+ def values(self) -> np.ndarray:
521
+ """
522
+ Returns a list of values
523
+ """
524
+ return self.array
525
+
526
+ @overload
527
+ def __getitem__(self, item: int) -> np.float64:
528
+ ...
529
+
530
+ @overload
531
+ def __getitem__(self, item: slice) -> np.ndarray:
532
+ ...
533
+
534
+ def __getitem__(self, item: Union[int, slice]) -> Union[np.float64, np.ndarray]:
535
+ return self.array[item]
536
+
537
+ def __len__(self) -> int:
538
+ return len(self.array)
539
+
540
+ def __str__(self) -> str:
541
+ return "[" + ",".join([str(v) for v in self.array]) + "]"
542
+
543
+ def __repr__(self) -> str:
544
+ return "DenseVector([%s])" % (", ".join(_format_float(i) for i in self.array))
545
+
546
+ def __eq__(self, other: Any) -> bool:
547
+ if isinstance(other, DenseVector):
548
+ return np.array_equal(self.array, other.array)
549
+ elif isinstance(other, SparseVector):
550
+ if len(self) != other.size:
551
+ return False
552
+ return Vectors._equals(list(range(len(self))), self.array, other.indices, other.values)
553
+ return False
554
+
555
+ def __ne__(self, other: Any) -> bool:
556
+ return not self == other
557
+
558
+ def __hash__(self) -> int:
559
+ size = len(self)
560
+ result = 31 + size
561
+ nnz = 0
562
+ i = 0
563
+ while i < size and nnz < 128:
564
+ if self.array[i] != 0:
565
+ result = 31 * result + i
566
+ bits = _double_to_long_bits(self.array[i])
567
+ result = 31 * result + (bits ^ (bits >> 32))
568
+ nnz += 1
569
+ i += 1
570
+ return result
571
+
572
+ def __getattr__(self, item: str) -> Any:
573
+ return getattr(self.array, item)
574
+
575
+ def __neg__(self) -> "DenseVector":
576
+ return DenseVector(-self.array)
577
+
578
+ def _delegate(op: str) -> Callable[["DenseVector", Any], "DenseVector"]: # type: ignore[misc]
579
+ def func(self: "DenseVector", other: Any) -> "DenseVector":
580
+ if isinstance(other, DenseVector):
581
+ other = other.array
582
+ return DenseVector(getattr(self.array, op)(other))
583
+
584
+ return func
585
+
586
+ __add__ = _delegate("__add__")
587
+ __sub__ = _delegate("__sub__")
588
+ __mul__ = _delegate("__mul__")
589
+ __div__ = _delegate("__div__")
590
+ __truediv__ = _delegate("__truediv__")
591
+ __mod__ = _delegate("__mod__")
592
+ __radd__ = _delegate("__radd__")
593
+ __rsub__ = _delegate("__rsub__")
594
+ __rmul__ = _delegate("__rmul__")
595
+ __rdiv__ = _delegate("__rdiv__")
596
+ __rtruediv__ = _delegate("__rtruediv__")
597
+ __rmod__ = _delegate("__rmod__")
598
+
599
+
600
+ class SparseVector(Vector):
601
+ """
602
+ A simple sparse vector class for passing data to MLlib. Users may
603
+ alternatively pass SciPy's {scipy.sparse} data types.
604
+ """
605
+
606
+ @overload
607
+ def __init__(self, size: int, __indices: bytes, __values: bytes):
608
+ ...
609
+
610
+ @overload
611
+ def __init__(self, size: int, *args: Tuple[int, float]):
612
+ ...
613
+
614
+ @overload
615
+ def __init__(self, size: int, __indices: Iterable[int], __values: Iterable[float]):
616
+ ...
617
+
618
+ @overload
619
+ def __init__(self, size: int, __pairs: Iterable[Tuple[int, float]]):
620
+ ...
621
+
622
+ @overload
623
+ def __init__(self, size: int, __map: Dict[int, float]):
624
+ ...
625
+
626
+ def __init__(
627
+ self,
628
+ size: int,
629
+ *args: Union[
630
+ bytes, Tuple[int, float], Iterable[float], Iterable[Tuple[int, float]], Dict[int, float]
631
+ ],
632
+ ):
633
+ """
634
+ Create a sparse vector, using either a dictionary, a list of
635
+ (index, value) pairs, or two separate arrays of indices and
636
+ values (sorted by index).
637
+
638
+ Parameters
639
+ ----------
640
+ size : int
641
+ Size of the vector.
642
+ args
643
+ Active entries, as a dictionary {index: value, ...},
644
+ a list of tuples [(index, value), ...], or a list of strictly
645
+ increasing indices and a list of corresponding values [index, ...],
646
+ [value, ...]. Inactive entries are treated as zeros.
647
+
648
+ Examples
649
+ --------
650
+ >>> SparseVector(4, {1: 1.0, 3: 5.5})
651
+ SparseVector(4, {1: 1.0, 3: 5.5})
652
+ >>> SparseVector(4, [(1, 1.0), (3, 5.5)])
653
+ SparseVector(4, {1: 1.0, 3: 5.5})
654
+ >>> SparseVector(4, [1, 3], [1.0, 5.5])
655
+ SparseVector(4, {1: 1.0, 3: 5.5})
656
+ """
657
+ self.size = int(size)
658
+ """ Size of the vector. """
659
+ assert 1 <= len(args) <= 2, "must pass either 2 or 3 arguments"
660
+ if len(args) == 1:
661
+ pairs = args[0]
662
+ if type(pairs) == dict:
663
+ pairs = pairs.items()
664
+ pairs = cast(Iterable[Tuple[int, float]], sorted(pairs))
665
+ self.indices = np.array([p[0] for p in pairs], dtype=np.int32)
666
+ """ A list of indices corresponding to active entries. """
667
+ self.values = np.array([p[1] for p in pairs], dtype=np.float64)
668
+ """ A list of values corresponding to active entries. """
669
+ else:
670
+ if isinstance(args[0], bytes):
671
+ assert isinstance(args[1], bytes), "values should be string too"
672
+ if args[0]:
673
+ self.indices = np.frombuffer(args[0], np.int32)
674
+ self.values = np.frombuffer(args[1], np.float64)
675
+ else:
676
+ # np.frombuffer() doesn't work well with empty string in older version
677
+ self.indices = np.array([], dtype=np.int32)
678
+ self.values = np.array([], dtype=np.float64)
679
+ else:
680
+ self.indices = np.array(args[0], dtype=np.int32)
681
+ self.values = np.array(args[1], dtype=np.float64)
682
+ assert len(self.indices) == len(self.values), "index and value arrays not same length"
683
+ for i in range(len(self.indices) - 1):
684
+ if self.indices[i] >= self.indices[i + 1]:
685
+ raise TypeError(
686
+ "Indices %s and %s are not strictly increasing"
687
+ % (self.indices[i], self.indices[i + 1])
688
+ )
689
+
690
+ def numNonzeros(self) -> int:
691
+ """
692
+ Number of nonzero elements. This scans all active values and count non zeros.
693
+ """
694
+ return np.count_nonzero(self.values)
695
+
696
+ def norm(self, p: "NormType") -> np.float64:
697
+ """
698
+ Calculates the norm of a SparseVector.
699
+
700
+ Examples
701
+ --------
702
+ >>> a = SparseVector(4, [0, 1], [3., -4.])
703
+ >>> a.norm(1)
704
+ 7.0
705
+ >>> a.norm(2)
706
+ 5.0
707
+ """
708
+ return np.linalg.norm(self.values, p)
709
+
710
+ def __reduce__(self) -> Tuple[Type["SparseVector"], Tuple[int, bytes, bytes]]:
711
+ return (
712
+ SparseVector,
713
+ (
714
+ self.size,
715
+ self.indices.tobytes(),
716
+ self.values.tobytes(),
717
+ ),
718
+ )
719
+
720
+ @staticmethod
721
+ def parse(s: str) -> "SparseVector":
722
+ """
723
+ Parse string representation back into the SparseVector.
724
+
725
+ Examples
726
+ --------
727
+ >>> SparseVector.parse(' (4, [0,1 ],[ 4.0,5.0] )')
728
+ SparseVector(4, {0: 4.0, 1: 5.0})
729
+ """
730
+ start = s.find("(")
731
+ if start == -1:
732
+ raise ValueError("Tuple should start with '('")
733
+ end = s.find(")")
734
+ if end == -1:
735
+ raise ValueError("Tuple should end with ')'")
736
+ s = s[start + 1 : end].strip()
737
+
738
+ size = s[: s.find(",")]
739
+ try:
740
+ size = int(size) # type: ignore[assignment]
741
+ except ValueError:
742
+ raise ValueError("Cannot parse size %s." % size)
743
+
744
+ ind_start = s.find("[")
745
+ if ind_start == -1:
746
+ raise ValueError("Indices array should start with '['.")
747
+ ind_end = s.find("]")
748
+ if ind_end == -1:
749
+ raise ValueError("Indices array should end with ']'")
750
+ new_s = s[ind_start + 1 : ind_end]
751
+ ind_list = new_s.split(",")
752
+ try:
753
+ indices = [int(ind) for ind in ind_list if ind]
754
+ except ValueError:
755
+ raise ValueError("Unable to parse indices from %s." % new_s)
756
+ s = s[ind_end + 1 :].strip()
757
+
758
+ val_start = s.find("[")
759
+ if val_start == -1:
760
+ raise ValueError("Values array should start with '['.")
761
+ val_end = s.find("]")
762
+ if val_end == -1:
763
+ raise ValueError("Values array should end with ']'.")
764
+ val_list = s[val_start + 1 : val_end].split(",")
765
+ try:
766
+ values = [float(val) for val in val_list if val]
767
+ except ValueError:
768
+ raise ValueError("Unable to parse values from %s." % s)
769
+ return SparseVector(cast(int, size), indices, values)
770
+
771
+ def dot(self, other: Iterable[float]) -> np.float64:
772
+ """
773
+ Dot product with a SparseVector or 1- or 2-dimensional Numpy array.
774
+
775
+ Examples
776
+ --------
777
+ >>> a = SparseVector(4, [1, 3], [3.0, 4.0])
778
+ >>> a.dot(a)
779
+ 25.0
780
+ >>> a.dot(array.array('d', [1., 2., 3., 4.]))
781
+ 22.0
782
+ >>> b = SparseVector(4, [2], [1.0])
783
+ >>> a.dot(b)
784
+ 0.0
785
+ >>> a.dot(np.array([[1, 1], [2, 2], [3, 3], [4, 4]]))
786
+ array([ 22., 22.])
787
+ >>> a.dot([1., 2., 3.])
788
+ Traceback (most recent call last):
789
+ ...
790
+ AssertionError: dimension mismatch
791
+ >>> a.dot(np.array([1., 2.]))
792
+ Traceback (most recent call last):
793
+ ...
794
+ AssertionError: dimension mismatch
795
+ >>> a.dot(DenseVector([1., 2.]))
796
+ Traceback (most recent call last):
797
+ ...
798
+ AssertionError: dimension mismatch
799
+ >>> a.dot(np.zeros((3, 2)))
800
+ Traceback (most recent call last):
801
+ ...
802
+ AssertionError: dimension mismatch
803
+ """
804
+
805
+ if isinstance(other, np.ndarray):
806
+ if other.ndim not in [2, 1]:
807
+ raise ValueError("Cannot call dot with %d-dimensional array" % other.ndim)
808
+ assert len(self) == other.shape[0], "dimension mismatch"
809
+ return np.dot(self.values, other[self.indices])
810
+
811
+ assert len(self) == _vector_size(other), "dimension mismatch"
812
+
813
+ if isinstance(other, DenseVector):
814
+ return np.dot(other.array[self.indices], self.values)
815
+
816
+ elif isinstance(other, SparseVector):
817
+ # Find out common indices.
818
+ self_cmind = np.in1d(self.indices, other.indices, assume_unique=True)
819
+ self_values = self.values[self_cmind]
820
+ if self_values.size == 0:
821
+ return np.float64(0.0)
822
+ else:
823
+ other_cmind = np.in1d(other.indices, self.indices, assume_unique=True)
824
+ return np.dot(self_values, other.values[other_cmind])
825
+
826
+ else:
827
+ return self.dot(_convert_to_vector(other)) # type: ignore[arg-type]
828
+
829
+ def squared_distance(self, other: Iterable[float]) -> np.float64:
830
+ """
831
+ Squared distance from a SparseVector or 1-dimensional NumPy array.
832
+
833
+ Examples
834
+ --------
835
+ >>> a = SparseVector(4, [1, 3], [3.0, 4.0])
836
+ >>> a.squared_distance(a)
837
+ 0.0
838
+ >>> a.squared_distance(array.array('d', [1., 2., 3., 4.]))
839
+ 11.0
840
+ >>> a.squared_distance(np.array([1., 2., 3., 4.]))
841
+ 11.0
842
+ >>> b = SparseVector(4, [2], [1.0])
843
+ >>> a.squared_distance(b)
844
+ 26.0
845
+ >>> b.squared_distance(a)
846
+ 26.0
847
+ >>> b.squared_distance([1., 2.])
848
+ Traceback (most recent call last):
849
+ ...
850
+ AssertionError: dimension mismatch
851
+ >>> b.squared_distance(SparseVector(3, [1,], [1.0,]))
852
+ Traceback (most recent call last):
853
+ ...
854
+ AssertionError: dimension mismatch
855
+ """
856
+ assert len(self) == _vector_size(other), "dimension mismatch"
857
+
858
+ if isinstance(other, np.ndarray) or isinstance(other, DenseVector):
859
+ if isinstance(other, np.ndarray) and other.ndim != 1:
860
+ raise ValueError(
861
+ "Cannot call squared_distance with %d-dimensional array" % other.ndim
862
+ )
863
+ if isinstance(other, DenseVector):
864
+ other = other.array
865
+ sparse_ind = np.zeros(other.size, dtype=bool)
866
+ sparse_ind[self.indices] = True
867
+ dist = other[sparse_ind] - self.values
868
+ result = np.dot(dist, dist)
869
+
870
+ other_ind = other[~sparse_ind]
871
+ result += np.dot(other_ind, other_ind)
872
+ return result
873
+
874
+ elif isinstance(other, SparseVector):
875
+ result = 0.0
876
+ i, j = 0, 0
877
+ while i < len(self.indices) and j < len(other.indices):
878
+ if self.indices[i] == other.indices[j]:
879
+ diff = self.values[i] - other.values[j]
880
+ result += diff * diff
881
+ i += 1
882
+ j += 1
883
+ elif self.indices[i] < other.indices[j]:
884
+ result += self.values[i] * self.values[i]
885
+ i += 1
886
+ else:
887
+ result += other.values[j] * other.values[j]
888
+ j += 1
889
+ while i < len(self.indices):
890
+ result += self.values[i] * self.values[i]
891
+ i += 1
892
+ while j < len(other.indices):
893
+ result += other.values[j] * other.values[j]
894
+ j += 1
895
+ return result
896
+ else:
897
+ return self.squared_distance(_convert_to_vector(other)) # type: ignore[arg-type]
898
+
899
+ def toArray(self) -> np.ndarray:
900
+ """
901
+ Returns a copy of this SparseVector as a 1-dimensional NumPy array.
902
+ """
903
+ arr = np.zeros((self.size,), dtype=np.float64)
904
+ arr[self.indices] = self.values
905
+ return arr
906
+
907
+ def asML(self) -> newlinalg.SparseVector:
908
+ """
909
+ Convert this vector to the new mllib-local representation.
910
+ This does NOT copy the data; it copies references.
911
+
912
+ .. versionadded:: 2.0.0
913
+
914
+ Returns
915
+ -------
916
+ :py:class:`pyspark.ml.linalg.SparseVector`
917
+ """
918
+ return newlinalg.SparseVector(self.size, self.indices, self.values)
919
+
920
+ def __len__(self) -> int:
921
+ return self.size
922
+
923
+ def __str__(self) -> str:
924
+ inds = "[" + ",".join([str(i) for i in self.indices]) + "]"
925
+ vals = "[" + ",".join([str(v) for v in self.values]) + "]"
926
+ return "(" + ",".join((str(self.size), inds, vals)) + ")"
927
+
928
+ def __repr__(self) -> str:
929
+ inds = self.indices
930
+ vals = self.values
931
+ entries = ", ".join(
932
+ ["{0}: {1}".format(inds[i], _format_float(vals[i])) for i in range(len(inds))]
933
+ )
934
+ return "SparseVector({0}, {{{1}}})".format(self.size, entries)
935
+
936
+ def __eq__(self, other: Any) -> bool:
937
+ if isinstance(other, SparseVector):
938
+ return (
939
+ other.size == self.size
940
+ and np.array_equal(other.indices, self.indices)
941
+ and np.array_equal(other.values, self.values)
942
+ )
943
+ elif isinstance(other, DenseVector):
944
+ if self.size != len(other):
945
+ return False
946
+ return Vectors._equals(self.indices, self.values, list(range(len(other))), other.array)
947
+ return False
948
+
949
+ def __getitem__(self, index: int) -> np.float64:
950
+ inds = self.indices
951
+ vals = self.values
952
+ if not isinstance(index, int):
953
+ raise TypeError("Indices must be of type integer, got type %s" % type(index))
954
+
955
+ if index >= self.size or index < -self.size:
956
+ raise IndexError("Index %d out of bounds." % index)
957
+ if index < 0:
958
+ index += self.size
959
+
960
+ if (inds.size == 0) or (index > inds.item(-1)):
961
+ return np.float64(0.0)
962
+
963
+ insert_index = np.searchsorted(inds, index)
964
+ row_ind = inds[insert_index]
965
+ if row_ind == index:
966
+ return vals[insert_index]
967
+ return np.float64(0.0)
968
+
969
+ def __ne__(self, other: Any) -> bool:
970
+ return not self.__eq__(other)
971
+
972
+ def __hash__(self) -> int:
973
+ result = 31 + self.size
974
+ nnz = 0
975
+ i = 0
976
+ while i < len(self.values) and nnz < 128:
977
+ if self.values[i] != 0:
978
+ result = 31 * result + int(self.indices[i])
979
+ bits = _double_to_long_bits(self.values[i])
980
+ result = 31 * result + (bits ^ (bits >> 32))
981
+ nnz += 1
982
+ i += 1
983
+ return result
984
+
985
+
986
+ class Vectors:
987
+
988
+ """
989
+ Factory methods for working with vectors.
990
+
991
+ Notes
992
+ -----
993
+ Dense vectors are simply represented as NumPy array objects,
994
+ so there is no need to convert them for use in MLlib. For sparse vectors,
995
+ the factory methods in this class create an MLlib-compatible type, or users
996
+ can pass in SciPy's `scipy.sparse` column vectors.
997
+ """
998
+
999
+ @staticmethod
1000
+ @overload
1001
+ def sparse(size: int, __indices: bytes, __values: bytes) -> SparseVector:
1002
+ ...
1003
+
1004
+ @staticmethod
1005
+ @overload
1006
+ def sparse(size: int, *args: Tuple[int, float]) -> SparseVector:
1007
+ ...
1008
+
1009
+ @staticmethod
1010
+ @overload
1011
+ def sparse(size: int, __indices: Iterable[int], __values: Iterable[float]) -> SparseVector:
1012
+ ...
1013
+
1014
+ @staticmethod
1015
+ @overload
1016
+ def sparse(size: int, __pairs: Iterable[Tuple[int, float]]) -> SparseVector:
1017
+ ...
1018
+
1019
+ @staticmethod
1020
+ @overload
1021
+ def sparse(size: int, __map: Dict[int, float]) -> SparseVector:
1022
+ ...
1023
+
1024
+ @staticmethod
1025
+ def sparse(
1026
+ size: int,
1027
+ *args: Union[
1028
+ bytes, Tuple[int, float], Iterable[float], Iterable[Tuple[int, float]], Dict[int, float]
1029
+ ],
1030
+ ) -> SparseVector:
1031
+ """
1032
+ Create a sparse vector, using either a dictionary, a list of
1033
+ (index, value) pairs, or two separate arrays of indices and
1034
+ values (sorted by index).
1035
+
1036
+ Parameters
1037
+ ----------
1038
+ size : int
1039
+ Size of the vector.
1040
+ args
1041
+ Non-zero entries, as a dictionary, list of tuples,
1042
+ or two sorted lists containing indices and values.
1043
+
1044
+ Examples
1045
+ --------
1046
+ >>> Vectors.sparse(4, {1: 1.0, 3: 5.5})
1047
+ SparseVector(4, {1: 1.0, 3: 5.5})
1048
+ >>> Vectors.sparse(4, [(1, 1.0), (3, 5.5)])
1049
+ SparseVector(4, {1: 1.0, 3: 5.5})
1050
+ >>> Vectors.sparse(4, [1, 3], [1.0, 5.5])
1051
+ SparseVector(4, {1: 1.0, 3: 5.5})
1052
+ """
1053
+ return SparseVector(size, *args) # type: ignore[arg-type]
1054
+
1055
+ @overload
1056
+ @staticmethod
1057
+ def dense(*elements: float) -> DenseVector:
1058
+ ...
1059
+
1060
+ @overload
1061
+ @staticmethod
1062
+ def dense(__arr: bytes) -> DenseVector:
1063
+ ...
1064
+
1065
+ @overload
1066
+ @staticmethod
1067
+ def dense(__arr: Iterable[float]) -> DenseVector:
1068
+ ...
1069
+
1070
+ @staticmethod
1071
+ def dense(*elements: Union[float, bytes, np.ndarray, Iterable[float]]) -> DenseVector:
1072
+ """
1073
+ Create a dense vector of 64-bit floats from a Python list or numbers.
1074
+
1075
+ Examples
1076
+ --------
1077
+ >>> Vectors.dense([1, 2, 3])
1078
+ DenseVector([1.0, 2.0, 3.0])
1079
+ >>> Vectors.dense(1.0, 2.0)
1080
+ DenseVector([1.0, 2.0])
1081
+ """
1082
+ if len(elements) == 1 and not isinstance(elements[0], (float, int)):
1083
+ # it's list, numpy.array or other iterable object.
1084
+ elements = elements[0] # type: ignore[assignment]
1085
+ return DenseVector(cast(Iterable[float], elements))
1086
+
1087
+ @staticmethod
1088
+ def fromML(vec: newlinalg.DenseVector) -> DenseVector:
1089
+ """
1090
+ Convert a vector from the new mllib-local representation.
1091
+ This does NOT copy the data; it copies references.
1092
+
1093
+ .. versionadded:: 2.0.0
1094
+
1095
+ Parameters
1096
+ ----------
1097
+ vec : :py:class:`pyspark.ml.linalg.Vector`
1098
+
1099
+ Returns
1100
+ -------
1101
+ :py:class:`pyspark.mllib.linalg.Vector`
1102
+ """
1103
+ if isinstance(vec, newlinalg.DenseVector):
1104
+ return DenseVector(vec.array)
1105
+ elif isinstance(vec, newlinalg.SparseVector):
1106
+ return SparseVector(vec.size, vec.indices, vec.values)
1107
+ else:
1108
+ raise TypeError("Unsupported vector type %s" % type(vec))
1109
+
1110
+ @staticmethod
1111
+ def stringify(vector: Vector) -> str:
1112
+ """
1113
+ Converts a vector into a string, which can be recognized by
1114
+ Vectors.parse().
1115
+
1116
+ Examples
1117
+ --------
1118
+ >>> Vectors.stringify(Vectors.sparse(2, [1], [1.0]))
1119
+ '(2,[1],[1.0])'
1120
+ >>> Vectors.stringify(Vectors.dense([0.0, 1.0]))
1121
+ '[0.0,1.0]'
1122
+ """
1123
+ return str(vector)
1124
+
1125
+ @staticmethod
1126
+ def squared_distance(v1: Vector, v2: Vector) -> np.float64:
1127
+ """
1128
+ Squared distance between two vectors.
1129
+ a and b can be of type SparseVector, DenseVector, np.ndarray
1130
+ or array.array.
1131
+
1132
+ Examples
1133
+ --------
1134
+ >>> a = Vectors.sparse(4, [(0, 1), (3, 4)])
1135
+ >>> b = Vectors.dense([2, 5, 4, 1])
1136
+ >>> a.squared_distance(b)
1137
+ 51.0
1138
+ """
1139
+ v1, v2 = _convert_to_vector(v1), _convert_to_vector(v2)
1140
+ return v1.squared_distance(v2) # type: ignore[attr-defined]
1141
+
1142
+ @staticmethod
1143
+ def norm(vector: Vector, p: "NormType") -> np.float64:
1144
+ """
1145
+ Find norm of the given vector.
1146
+ """
1147
+ return _convert_to_vector(vector).norm(p) # type: ignore[attr-defined]
1148
+
1149
+ @staticmethod
1150
+ def parse(s: str) -> Vector:
1151
+ """Parse a string representation back into the Vector.
1152
+
1153
+ Examples
1154
+ --------
1155
+ >>> Vectors.parse('[2,1,2 ]')
1156
+ DenseVector([2.0, 1.0, 2.0])
1157
+ >>> Vectors.parse(' ( 100, [0], [2])')
1158
+ SparseVector(100, {0: 2.0})
1159
+ """
1160
+ if s.find("(") == -1 and s.find("[") != -1:
1161
+ return DenseVector.parse(s)
1162
+ elif s.find("(") != -1:
1163
+ return SparseVector.parse(s)
1164
+ else:
1165
+ raise ValueError("Cannot find tokens '[' or '(' from the input string.")
1166
+
1167
+ @staticmethod
1168
+ def zeros(size: int) -> DenseVector:
1169
+ return DenseVector(np.zeros(size))
1170
+
1171
+ @staticmethod
1172
+ def _equals(
1173
+ v1_indices: Union[Sequence[int], np.ndarray],
1174
+ v1_values: Union[Sequence[float], np.ndarray],
1175
+ v2_indices: Union[Sequence[int], np.ndarray],
1176
+ v2_values: Union[Sequence[float], np.ndarray],
1177
+ ) -> bool:
1178
+ """
1179
+ Check equality between sparse/dense vectors,
1180
+ v1_indices and v2_indices assume to be strictly increasing.
1181
+ """
1182
+ v1_size = len(v1_values)
1183
+ v2_size = len(v2_values)
1184
+ k1 = 0
1185
+ k2 = 0
1186
+ all_equal = True
1187
+ while all_equal:
1188
+ while k1 < v1_size and v1_values[k1] == 0:
1189
+ k1 += 1
1190
+ while k2 < v2_size and v2_values[k2] == 0:
1191
+ k2 += 1
1192
+
1193
+ if k1 >= v1_size or k2 >= v2_size:
1194
+ return k1 >= v1_size and k2 >= v2_size
1195
+
1196
+ all_equal = v1_indices[k1] == v2_indices[k2] and v1_values[k1] == v2_values[k2]
1197
+ k1 += 1
1198
+ k2 += 1
1199
+ return all_equal
1200
+
1201
+
1202
+ class Matrix:
1203
+
1204
+ __UDT__ = MatrixUDT()
1205
+
1206
+ """
1207
+ Represents a local matrix.
1208
+ """
1209
+
1210
+ def __init__(self, numRows: int, numCols: int, isTransposed: bool = False) -> None:
1211
+ self.numRows = numRows
1212
+ self.numCols = numCols
1213
+ self.isTransposed = isTransposed
1214
+
1215
+ def toArray(self) -> np.ndarray:
1216
+ """
1217
+ Returns its elements in a NumPy ndarray.
1218
+ """
1219
+ raise NotImplementedError
1220
+
1221
+ def asML(self) -> newlinalg.Matrix:
1222
+ """
1223
+ Convert this matrix to the new mllib-local representation.
1224
+ This does NOT copy the data; it copies references.
1225
+ """
1226
+ raise NotImplementedError
1227
+
1228
+ @staticmethod
1229
+ def _convert_to_array(array_like: Union[bytes, Iterable[float]], dtype: Any) -> np.ndarray:
1230
+ """
1231
+ Convert Matrix attributes which are array-like or buffer to array.
1232
+ """
1233
+ if isinstance(array_like, bytes):
1234
+ return np.frombuffer(array_like, dtype=dtype)
1235
+ return np.asarray(array_like, dtype=dtype)
1236
+
1237
+
1238
+ class DenseMatrix(Matrix):
1239
+ """
1240
+ Column-major dense matrix.
1241
+ """
1242
+
1243
+ def __init__(
1244
+ self,
1245
+ numRows: int,
1246
+ numCols: int,
1247
+ values: Union[bytes, Iterable[float]],
1248
+ isTransposed: bool = False,
1249
+ ):
1250
+ Matrix.__init__(self, numRows, numCols, isTransposed)
1251
+ values = self._convert_to_array(values, np.float64)
1252
+ assert len(values) == numRows * numCols
1253
+ self.values = values
1254
+
1255
+ def __reduce__(self) -> Tuple[Type["DenseMatrix"], Tuple[int, int, bytes, int]]:
1256
+ return DenseMatrix, (
1257
+ self.numRows,
1258
+ self.numCols,
1259
+ self.values.tobytes(),
1260
+ int(self.isTransposed),
1261
+ )
1262
+
1263
+ def __str__(self) -> str:
1264
+ """
1265
+ Pretty printing of a DenseMatrix
1266
+
1267
+ Examples
1268
+ --------
1269
+ >>> dm = DenseMatrix(2, 2, range(4))
1270
+ >>> print(dm)
1271
+ DenseMatrix([[ 0., 2.],
1272
+ [ 1., 3.]])
1273
+ >>> dm = DenseMatrix(2, 2, range(4), isTransposed=True)
1274
+ >>> print(dm)
1275
+ DenseMatrix([[ 0., 1.],
1276
+ [ 2., 3.]])
1277
+ """
1278
+ # Inspired by __repr__ in scipy matrices.
1279
+ array_lines = repr(self.toArray()).splitlines()
1280
+
1281
+ # We need to adjust six spaces which is the difference in number
1282
+ # of letters between "DenseMatrix" and "array"
1283
+ x = "\n".join([(" " * 6 + line) for line in array_lines[1:]])
1284
+ return array_lines[0].replace("array", "DenseMatrix") + "\n" + x
1285
+
1286
+ def __repr__(self) -> str:
1287
+ """
1288
+ Representation of a DenseMatrix
1289
+
1290
+ Examples
1291
+ --------
1292
+ >>> dm = DenseMatrix(2, 2, range(4))
1293
+ >>> dm
1294
+ DenseMatrix(2, 2, [0.0, 1.0, 2.0, 3.0], False)
1295
+ """
1296
+ # If the number of values are less than seventeen then return as it is.
1297
+ # Else return first eight values and last eight values.
1298
+ if len(self.values) < 17:
1299
+ entries = _format_float_list(self.values)
1300
+ else:
1301
+ entries = (
1302
+ _format_float_list(self.values[:8]) + ["..."] + _format_float_list(self.values[-8:])
1303
+ )
1304
+
1305
+ return "DenseMatrix({0}, {1}, [{2}], {3})".format(
1306
+ self.numRows, self.numCols, ", ".join(entries), self.isTransposed
1307
+ )
1308
+
1309
+ def toArray(self) -> np.ndarray:
1310
+ """
1311
+ Return an numpy.ndarray
1312
+
1313
+ Examples
1314
+ --------
1315
+ >>> m = DenseMatrix(2, 2, range(4))
1316
+ >>> m.toArray()
1317
+ array([[ 0., 2.],
1318
+ [ 1., 3.]])
1319
+ """
1320
+ if self.isTransposed:
1321
+ return np.asfortranarray(self.values.reshape((self.numRows, self.numCols)))
1322
+ else:
1323
+ return self.values.reshape((self.numRows, self.numCols), order="F")
1324
+
1325
+ def toSparse(self) -> "SparseMatrix":
1326
+ """Convert to SparseMatrix"""
1327
+ if self.isTransposed:
1328
+ values = np.ravel(self.toArray(), order="F")
1329
+ else:
1330
+ values = self.values
1331
+ indices = np.nonzero(values)[0]
1332
+ colCounts = np.bincount(indices // self.numRows)
1333
+ colPtrs = np.cumsum(np.hstack((0, colCounts, np.zeros(self.numCols - colCounts.size))))
1334
+ values = values[indices]
1335
+ rowIndices = indices % self.numRows
1336
+
1337
+ return SparseMatrix(self.numRows, self.numCols, colPtrs, rowIndices, values)
1338
+
1339
+ def asML(self) -> newlinalg.DenseMatrix:
1340
+ """
1341
+ Convert this matrix to the new mllib-local representation.
1342
+ This does NOT copy the data; it copies references.
1343
+
1344
+ .. versionadded:: 2.0.0
1345
+
1346
+ Returns
1347
+ -------
1348
+ :py:class:`pyspark.ml.linalg.DenseMatrix`
1349
+ """
1350
+ return newlinalg.DenseMatrix(self.numRows, self.numCols, self.values, self.isTransposed)
1351
+
1352
+ def __getitem__(self, indices: Tuple[int, int]) -> np.float64:
1353
+ i, j = indices
1354
+ if i < 0 or i >= self.numRows:
1355
+ raise IndexError("Row index %d is out of range [0, %d)" % (i, self.numRows))
1356
+ if j >= self.numCols or j < 0:
1357
+ raise IndexError("Column index %d is out of range [0, %d)" % (j, self.numCols))
1358
+
1359
+ if self.isTransposed:
1360
+ return self.values[i * self.numCols + j]
1361
+ else:
1362
+ return self.values[i + j * self.numRows]
1363
+
1364
+ def __eq__(self, other: Any) -> bool:
1365
+ if self.numRows != other.numRows or self.numCols != other.numCols:
1366
+ return False
1367
+ if isinstance(other, SparseMatrix):
1368
+ return np.all(self.toArray() == other.toArray()).tolist()
1369
+
1370
+ self_values = np.ravel(self.toArray(), order="F")
1371
+ other_values = np.ravel(other.toArray(), order="F")
1372
+ return np.all(self_values == other_values).tolist()
1373
+
1374
+
1375
+ class SparseMatrix(Matrix):
1376
+ """Sparse Matrix stored in CSC format."""
1377
+
1378
+ def __init__(
1379
+ self,
1380
+ numRows: int,
1381
+ numCols: int,
1382
+ colPtrs: Union[bytes, Iterable[int]],
1383
+ rowIndices: Union[bytes, Iterable[int]],
1384
+ values: Union[bytes, Iterable[float]],
1385
+ isTransposed: bool = False,
1386
+ ) -> None:
1387
+ Matrix.__init__(self, numRows, numCols, isTransposed)
1388
+ self.colPtrs = self._convert_to_array(colPtrs, np.int32)
1389
+ self.rowIndices = self._convert_to_array(rowIndices, np.int32)
1390
+ self.values = self._convert_to_array(values, np.float64)
1391
+
1392
+ if self.isTransposed:
1393
+ if self.colPtrs.size != numRows + 1:
1394
+ raise ValueError(
1395
+ "Expected colPtrs of size %d, got %d." % (numRows + 1, self.colPtrs.size)
1396
+ )
1397
+ else:
1398
+ if self.colPtrs.size != numCols + 1:
1399
+ raise ValueError(
1400
+ "Expected colPtrs of size %d, got %d." % (numCols + 1, self.colPtrs.size)
1401
+ )
1402
+ if self.rowIndices.size != self.values.size:
1403
+ raise ValueError(
1404
+ "Expected rowIndices of length %d, got %d."
1405
+ % (self.rowIndices.size, self.values.size)
1406
+ )
1407
+
1408
+ def __str__(self) -> str:
1409
+ """
1410
+ Pretty printing of a SparseMatrix
1411
+
1412
+ Examples
1413
+ --------
1414
+ >>> sm1 = SparseMatrix(2, 2, [0, 2, 3], [0, 1, 1], [2, 3, 4])
1415
+ >>> print(sm1)
1416
+ 2 X 2 CSCMatrix
1417
+ (0,0) 2.0
1418
+ (1,0) 3.0
1419
+ (1,1) 4.0
1420
+ >>> sm1 = SparseMatrix(2, 2, [0, 2, 3], [0, 1, 1], [2, 3, 4], True)
1421
+ >>> print(sm1)
1422
+ 2 X 2 CSRMatrix
1423
+ (0,0) 2.0
1424
+ (0,1) 3.0
1425
+ (1,1) 4.0
1426
+ """
1427
+ spstr = "{0} X {1} ".format(self.numRows, self.numCols)
1428
+ if self.isTransposed:
1429
+ spstr += "CSRMatrix\n"
1430
+ else:
1431
+ spstr += "CSCMatrix\n"
1432
+
1433
+ cur_col = 0
1434
+ smlist = []
1435
+
1436
+ # Display first 16 values.
1437
+ if len(self.values) <= 16:
1438
+ zipindval = zip(self.rowIndices, self.values)
1439
+ else:
1440
+ zipindval = zip(self.rowIndices[:16], self.values[:16])
1441
+ for i, (rowInd, value) in enumerate(zipindval):
1442
+ if self.colPtrs[cur_col + 1] <= i:
1443
+ cur_col += 1
1444
+ if self.isTransposed:
1445
+ smlist.append("({0},{1}) {2}".format(cur_col, rowInd, _format_float(value)))
1446
+ else:
1447
+ smlist.append("({0},{1}) {2}".format(rowInd, cur_col, _format_float(value)))
1448
+ spstr += "\n".join(smlist)
1449
+
1450
+ if len(self.values) > 16:
1451
+ spstr += "\n.." * 2
1452
+ return spstr
1453
+
1454
+ def __repr__(self) -> str:
1455
+ """
1456
+ Representation of a SparseMatrix
1457
+
1458
+ Examples
1459
+ --------
1460
+ >>> sm1 = SparseMatrix(2, 2, [0, 2, 3], [0, 1, 1], [2, 3, 4])
1461
+ >>> sm1
1462
+ SparseMatrix(2, 2, [0, 2, 3], [0, 1, 1], [2.0, 3.0, 4.0], False)
1463
+ """
1464
+ rowIndices = list(self.rowIndices)
1465
+ colPtrs = list(self.colPtrs)
1466
+
1467
+ if len(self.values) <= 16:
1468
+ values = _format_float_list(self.values)
1469
+
1470
+ else:
1471
+ values = (
1472
+ _format_float_list(self.values[:8]) + ["..."] + _format_float_list(self.values[-8:])
1473
+ )
1474
+ rowIndices = rowIndices[:8] + ["..."] + rowIndices[-8:]
1475
+
1476
+ if len(self.colPtrs) > 16:
1477
+ colPtrs = colPtrs[:8] + ["..."] + colPtrs[-8:]
1478
+
1479
+ return "SparseMatrix({0}, {1}, [{2}], [{3}], [{4}], {5})".format(
1480
+ self.numRows,
1481
+ self.numCols,
1482
+ ", ".join([str(ptr) for ptr in colPtrs]),
1483
+ ", ".join([str(ind) for ind in rowIndices]),
1484
+ ", ".join(values),
1485
+ self.isTransposed,
1486
+ )
1487
+
1488
+ def __reduce__(self) -> Tuple[Type["SparseMatrix"], Tuple[int, int, bytes, bytes, bytes, int]]:
1489
+ return SparseMatrix, (
1490
+ self.numRows,
1491
+ self.numCols,
1492
+ self.colPtrs.tobytes(),
1493
+ self.rowIndices.tobytes(),
1494
+ self.values.tobytes(),
1495
+ int(self.isTransposed),
1496
+ )
1497
+
1498
+ def __getitem__(self, indices: Tuple[int, int]) -> np.float64:
1499
+ i, j = indices
1500
+ if i < 0 or i >= self.numRows:
1501
+ raise IndexError("Row index %d is out of range [0, %d)" % (i, self.numRows))
1502
+ if j < 0 or j >= self.numCols:
1503
+ raise IndexError("Column index %d is out of range [0, %d)" % (j, self.numCols))
1504
+
1505
+ # If a CSR matrix is given, then the row index should be searched
1506
+ # for in ColPtrs, and the column index should be searched for in the
1507
+ # corresponding slice obtained from rowIndices.
1508
+ if self.isTransposed:
1509
+ j, i = i, j
1510
+
1511
+ colStart = self.colPtrs[j]
1512
+ colEnd = self.colPtrs[j + 1]
1513
+ nz = self.rowIndices[colStart:colEnd]
1514
+ ind = np.searchsorted(nz, i) + colStart
1515
+ if ind < colEnd and self.rowIndices[ind] == i:
1516
+ return self.values[ind]
1517
+ else:
1518
+ return np.float64(0.0)
1519
+
1520
+ def toArray(self) -> np.ndarray:
1521
+ """
1522
+ Return an numpy.ndarray
1523
+ """
1524
+ A = np.zeros((self.numRows, self.numCols), dtype=np.float64, order="F")
1525
+ for k in range(self.colPtrs.size - 1):
1526
+ startptr = self.colPtrs[k]
1527
+ endptr = self.colPtrs[k + 1]
1528
+ if self.isTransposed:
1529
+ A[k, self.rowIndices[startptr:endptr]] = self.values[startptr:endptr]
1530
+ else:
1531
+ A[self.rowIndices[startptr:endptr], k] = self.values[startptr:endptr]
1532
+ return A
1533
+
1534
+ def toDense(self) -> "DenseMatrix":
1535
+ densevals = np.ravel(self.toArray(), order="F")
1536
+ return DenseMatrix(self.numRows, self.numCols, densevals)
1537
+
1538
+ def asML(self) -> newlinalg.SparseMatrix:
1539
+ """
1540
+ Convert this matrix to the new mllib-local representation.
1541
+ This does NOT copy the data; it copies references.
1542
+
1543
+ .. versionadded:: 2.0.0
1544
+
1545
+ Returns
1546
+ -------
1547
+ :py:class:`pyspark.ml.linalg.SparseMatrix`
1548
+ """
1549
+ return newlinalg.SparseMatrix(
1550
+ self.numRows,
1551
+ self.numCols,
1552
+ self.colPtrs,
1553
+ self.rowIndices,
1554
+ self.values,
1555
+ self.isTransposed,
1556
+ )
1557
+
1558
+ # TODO: More efficient implementation:
1559
+ def __eq__(self, other: Any) -> bool:
1560
+ assert isinstance(other, Matrix)
1561
+ return np.all(self.toArray() == other.toArray()).tolist()
1562
+
1563
+
1564
+ class Matrices:
1565
+ @staticmethod
1566
+ def dense(numRows: int, numCols: int, values: Union[bytes, Iterable[float]]) -> DenseMatrix:
1567
+ """
1568
+ Create a DenseMatrix
1569
+ """
1570
+ return DenseMatrix(numRows, numCols, values)
1571
+
1572
+ @staticmethod
1573
+ def sparse(
1574
+ numRows: int,
1575
+ numCols: int,
1576
+ colPtrs: Union[bytes, Iterable[int]],
1577
+ rowIndices: Union[bytes, Iterable[int]],
1578
+ values: Union[bytes, Iterable[float]],
1579
+ ) -> SparseMatrix:
1580
+ """
1581
+ Create a SparseMatrix
1582
+ """
1583
+ return SparseMatrix(numRows, numCols, colPtrs, rowIndices, values)
1584
+
1585
+ @staticmethod
1586
+ def fromML(mat: newlinalg.Matrix) -> Matrix:
1587
+ """
1588
+ Convert a matrix from the new mllib-local representation.
1589
+ This does NOT copy the data; it copies references.
1590
+
1591
+ .. versionadded:: 2.0.0
1592
+
1593
+ Parameters
1594
+ ----------
1595
+ mat : :py:class:`pyspark.ml.linalg.Matrix`
1596
+
1597
+ Returns
1598
+ -------
1599
+ :py:class:`pyspark.mllib.linalg.Matrix`
1600
+ """
1601
+ if isinstance(mat, newlinalg.DenseMatrix):
1602
+ return DenseMatrix(mat.numRows, mat.numCols, mat.values, mat.isTransposed)
1603
+ elif isinstance(mat, newlinalg.SparseMatrix):
1604
+ return SparseMatrix(
1605
+ mat.numRows, mat.numCols, mat.colPtrs, mat.rowIndices, mat.values, mat.isTransposed
1606
+ )
1607
+ else:
1608
+ raise TypeError("Unsupported matrix type %s" % type(mat))
1609
+
1610
+
1611
+ class QRDecomposition(Generic[QT, RT]):
1612
+ """
1613
+ Represents QR factors.
1614
+ """
1615
+
1616
+ def __init__(self, Q: QT, R: RT) -> None:
1617
+ self._Q = Q
1618
+ self._R = R
1619
+
1620
+ @property
1621
+ @since("2.0.0")
1622
+ def Q(self) -> QT:
1623
+ """
1624
+ An orthogonal matrix Q in a QR decomposition.
1625
+ May be null if not computed.
1626
+ """
1627
+ return self._Q
1628
+
1629
+ @property
1630
+ @since("2.0.0")
1631
+ def R(self) -> RT:
1632
+ """
1633
+ An upper triangular matrix R in a QR decomposition.
1634
+ """
1635
+ return self._R
1636
+
1637
+
1638
+ def _test() -> None:
1639
+ import doctest
1640
+ import numpy
1641
+
1642
+ try:
1643
+ # Numpy 1.14+ changed it's string format.
1644
+ numpy.set_printoptions(legacy="1.13")
1645
+ except TypeError:
1646
+ pass
1647
+ (failure_count, test_count) = doctest.testmod(optionflags=doctest.ELLIPSIS)
1648
+ if failure_count:
1649
+ sys.exit(-1)
1650
+
1651
+
1652
+ if __name__ == "__main__":
1653
+ _test()