maxframe 2.0.0b1__cp38-cp38-macosx_10_9_universal2.whl → 2.2.0__cp38-cp38-macosx_10_9_universal2.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 maxframe might be problematic. Click here for more details.

Files changed (395) hide show
  1. maxframe/__init__.py +1 -0
  2. maxframe/_utils.cpython-38-darwin.so +0 -0
  3. maxframe/_utils.pyx +14 -1
  4. maxframe/codegen/core.py +6 -6
  5. maxframe/codegen/spe/core.py +1 -1
  6. maxframe/codegen/spe/dataframe/__init__.py +1 -0
  7. maxframe/codegen/spe/dataframe/accessors/base.py +18 -0
  8. maxframe/codegen/spe/dataframe/accessors/dict_.py +25 -130
  9. maxframe/codegen/spe/dataframe/accessors/list_.py +12 -48
  10. maxframe/codegen/spe/dataframe/accessors/struct_.py +28 -0
  11. maxframe/codegen/spe/dataframe/arithmetic.py +7 -2
  12. maxframe/codegen/spe/dataframe/groupby.py +88 -0
  13. maxframe/codegen/spe/dataframe/indexing.py +99 -4
  14. maxframe/codegen/spe/dataframe/merge.py +34 -1
  15. maxframe/codegen/spe/dataframe/misc.py +9 -33
  16. maxframe/codegen/spe/dataframe/reduction.py +14 -9
  17. maxframe/codegen/spe/dataframe/reshape.py +46 -0
  18. maxframe/codegen/spe/dataframe/sort.py +30 -17
  19. maxframe/codegen/spe/dataframe/tests/accessors/test_dict.py +9 -15
  20. maxframe/codegen/spe/dataframe/tests/accessors/test_list.py +4 -7
  21. maxframe/codegen/spe/dataframe/tests/accessors/test_struct.py +75 -0
  22. maxframe/codegen/spe/dataframe/tests/indexing/test_iloc.py +20 -1
  23. maxframe/codegen/spe/dataframe/tests/indexing/test_loc.py +35 -0
  24. maxframe/codegen/spe/dataframe/tests/misc/test_misc.py +0 -32
  25. maxframe/codegen/spe/dataframe/tests/test_groupby.py +81 -18
  26. maxframe/codegen/spe/dataframe/tests/test_merge.py +27 -1
  27. maxframe/codegen/spe/dataframe/tests/test_reshape.py +79 -0
  28. maxframe/codegen/spe/dataframe/tests/test_sort.py +20 -0
  29. maxframe/codegen/spe/learn/contrib/tests/test_xgboost.py +2 -1
  30. maxframe/codegen/spe/learn/metrics/__init__.py +1 -1
  31. maxframe/codegen/spe/learn/metrics/_ranking.py +76 -0
  32. maxframe/codegen/spe/learn/metrics/pairwise.py +51 -0
  33. maxframe/codegen/spe/learn/metrics/tests/test_pairwise.py +36 -0
  34. maxframe/codegen/spe/learn/metrics/tests/test_ranking.py +59 -0
  35. maxframe/codegen/spe/tensor/__init__.py +3 -0
  36. maxframe/codegen/spe/tensor/fft.py +74 -0
  37. maxframe/codegen/spe/tensor/linalg.py +29 -2
  38. maxframe/codegen/spe/tensor/misc.py +79 -25
  39. maxframe/codegen/spe/tensor/spatial.py +45 -0
  40. maxframe/codegen/spe/tensor/statistics.py +44 -0
  41. maxframe/codegen/spe/tensor/tests/test_fft.py +64 -0
  42. maxframe/codegen/spe/tensor/tests/test_linalg.py +15 -1
  43. maxframe/codegen/spe/tensor/tests/test_misc.py +52 -2
  44. maxframe/codegen/spe/tensor/tests/test_spatial.py +33 -0
  45. maxframe/codegen/spe/tensor/tests/test_statistics.py +15 -1
  46. maxframe/codegen/spe/tests/test_spe_codegen.py +6 -12
  47. maxframe/codegen/spe/utils.py +2 -0
  48. maxframe/config/config.py +70 -9
  49. maxframe/config/tests/test_validators.py +13 -1
  50. maxframe/config/validators.py +49 -0
  51. maxframe/conftest.py +44 -17
  52. maxframe/core/accessor.py +2 -2
  53. maxframe/core/entity/core.py +5 -0
  54. maxframe/core/entity/tileables.py +1 -1
  55. maxframe/core/graph/core.cpython-38-darwin.so +0 -0
  56. maxframe/core/graph/entity.py +1 -2
  57. maxframe/core/operator/base.py +9 -2
  58. maxframe/core/operator/core.py +10 -2
  59. maxframe/core/operator/utils.py +13 -0
  60. maxframe/dataframe/__init__.py +10 -3
  61. maxframe/dataframe/accessors/__init__.py +1 -1
  62. maxframe/dataframe/accessors/compat.py +45 -0
  63. maxframe/dataframe/accessors/datetime_/__init__.py +4 -1
  64. maxframe/dataframe/accessors/dict_/contains.py +7 -16
  65. maxframe/dataframe/accessors/dict_/core.py +48 -0
  66. maxframe/dataframe/accessors/dict_/getitem.py +17 -21
  67. maxframe/dataframe/accessors/dict_/length.py +7 -16
  68. maxframe/dataframe/accessors/dict_/remove.py +6 -18
  69. maxframe/dataframe/accessors/dict_/setitem.py +8 -18
  70. maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py +62 -22
  71. maxframe/dataframe/accessors/list_/__init__.py +2 -2
  72. maxframe/dataframe/accessors/list_/core.py +48 -0
  73. maxframe/dataframe/accessors/list_/getitem.py +12 -19
  74. maxframe/dataframe/accessors/list_/length.py +7 -16
  75. maxframe/dataframe/accessors/list_/tests/test_list_accessor.py +11 -9
  76. maxframe/dataframe/accessors/string_/__init__.py +4 -1
  77. maxframe/dataframe/accessors/struct_/__init__.py +37 -0
  78. maxframe/dataframe/accessors/struct_/accessor.py +39 -0
  79. maxframe/dataframe/accessors/struct_/core.py +43 -0
  80. maxframe/dataframe/accessors/struct_/dtypes.py +53 -0
  81. maxframe/dataframe/accessors/struct_/field.py +123 -0
  82. maxframe/dataframe/accessors/struct_/tests/__init__.py +13 -0
  83. maxframe/dataframe/accessors/struct_/tests/test_struct_accessor.py +91 -0
  84. maxframe/dataframe/arithmetic/__init__.py +14 -4
  85. maxframe/dataframe/arithmetic/between.py +106 -0
  86. maxframe/dataframe/arithmetic/dot.py +237 -0
  87. maxframe/dataframe/arithmetic/{around.py → round.py} +11 -7
  88. maxframe/dataframe/core.py +63 -118
  89. maxframe/dataframe/datasource/__init__.py +18 -0
  90. maxframe/dataframe/datasource/from_dict.py +124 -0
  91. maxframe/dataframe/datasource/from_index.py +1 -1
  92. maxframe/dataframe/datasource/from_records.py +77 -0
  93. maxframe/dataframe/datasource/from_tensor.py +109 -41
  94. maxframe/dataframe/datasource/read_csv.py +2 -3
  95. maxframe/dataframe/datasource/read_odps_query.py +76 -16
  96. maxframe/dataframe/datasource/tests/test_datasource.py +84 -1
  97. maxframe/dataframe/datastore/__init__.py +5 -1
  98. maxframe/dataframe/datastore/to_csv.py +29 -41
  99. maxframe/dataframe/datastore/to_odps.py +30 -4
  100. maxframe/dataframe/extensions/__init__.py +20 -4
  101. maxframe/dataframe/extensions/apply_chunk.py +32 -6
  102. maxframe/dataframe/extensions/cartesian_chunk.py +153 -0
  103. maxframe/dataframe/extensions/collect_kv.py +126 -0
  104. maxframe/dataframe/extensions/extract_kv.py +177 -0
  105. maxframe/dataframe/extensions/map_reduce.py +263 -0
  106. maxframe/dataframe/extensions/rebalance.py +62 -0
  107. maxframe/dataframe/extensions/tests/test_apply_chunk.py +9 -2
  108. maxframe/dataframe/extensions/tests/test_extensions.py +54 -0
  109. maxframe/dataframe/extensions/tests/test_map_reduce.py +135 -0
  110. maxframe/dataframe/groupby/__init__.py +12 -1
  111. maxframe/dataframe/groupby/aggregation.py +78 -45
  112. maxframe/dataframe/groupby/apply.py +1 -1
  113. maxframe/dataframe/groupby/apply_chunk.py +18 -2
  114. maxframe/dataframe/groupby/core.py +96 -12
  115. maxframe/dataframe/groupby/cum.py +4 -25
  116. maxframe/dataframe/groupby/expanding.py +264 -0
  117. maxframe/dataframe/groupby/fill.py +1 -1
  118. maxframe/dataframe/groupby/getitem.py +12 -5
  119. maxframe/dataframe/groupby/head.py +11 -1
  120. maxframe/dataframe/groupby/rank.py +136 -0
  121. maxframe/dataframe/groupby/rolling.py +206 -0
  122. maxframe/dataframe/groupby/shift.py +114 -0
  123. maxframe/dataframe/groupby/tests/test_groupby.py +0 -5
  124. maxframe/dataframe/indexing/__init__.py +20 -1
  125. maxframe/dataframe/indexing/droplevel.py +195 -0
  126. maxframe/dataframe/indexing/filter.py +169 -0
  127. maxframe/dataframe/indexing/get_level_values.py +76 -0
  128. maxframe/dataframe/indexing/iat.py +45 -0
  129. maxframe/dataframe/indexing/iloc.py +152 -12
  130. maxframe/dataframe/indexing/insert.py +1 -1
  131. maxframe/dataframe/indexing/loc.py +287 -7
  132. maxframe/dataframe/indexing/reindex.py +14 -5
  133. maxframe/dataframe/indexing/rename.py +6 -0
  134. maxframe/dataframe/indexing/rename_axis.py +2 -2
  135. maxframe/dataframe/indexing/reorder_levels.py +143 -0
  136. maxframe/dataframe/indexing/reset_index.py +33 -6
  137. maxframe/dataframe/indexing/sample.py +8 -0
  138. maxframe/dataframe/indexing/setitem.py +3 -3
  139. maxframe/dataframe/indexing/swaplevel.py +185 -0
  140. maxframe/dataframe/indexing/take.py +99 -0
  141. maxframe/dataframe/indexing/truncate.py +140 -0
  142. maxframe/dataframe/indexing/where.py +0 -11
  143. maxframe/dataframe/indexing/xs.py +148 -0
  144. maxframe/dataframe/merge/__init__.py +12 -1
  145. maxframe/dataframe/merge/append.py +97 -98
  146. maxframe/dataframe/merge/combine_first.py +120 -0
  147. maxframe/dataframe/merge/compare.py +387 -0
  148. maxframe/dataframe/merge/concat.py +183 -0
  149. maxframe/dataframe/merge/update.py +271 -0
  150. maxframe/dataframe/misc/__init__.py +16 -10
  151. maxframe/dataframe/misc/_duplicate.py +10 -4
  152. maxframe/dataframe/misc/apply.py +1 -1
  153. maxframe/dataframe/misc/check_unique.py +51 -0
  154. maxframe/dataframe/misc/clip.py +145 -0
  155. maxframe/dataframe/misc/describe.py +175 -9
  156. maxframe/dataframe/misc/drop_duplicates.py +2 -2
  157. maxframe/dataframe/misc/duplicated.py +2 -2
  158. maxframe/dataframe/misc/get_dummies.py +5 -1
  159. maxframe/dataframe/misc/isin.py +2 -2
  160. maxframe/dataframe/misc/map.py +94 -0
  161. maxframe/dataframe/misc/tests/test_misc.py +13 -2
  162. maxframe/dataframe/misc/to_numeric.py +3 -0
  163. maxframe/dataframe/misc/transform.py +12 -5
  164. maxframe/dataframe/misc/transpose.py +13 -1
  165. maxframe/dataframe/misc/valid_index.py +115 -0
  166. maxframe/dataframe/misc/value_counts.py +38 -4
  167. maxframe/dataframe/missing/checkna.py +13 -6
  168. maxframe/dataframe/missing/dropna.py +5 -0
  169. maxframe/dataframe/missing/fillna.py +1 -1
  170. maxframe/dataframe/missing/replace.py +7 -4
  171. maxframe/dataframe/reduction/__init__.py +29 -15
  172. maxframe/dataframe/reduction/aggregation.py +38 -9
  173. maxframe/dataframe/reduction/all.py +2 -2
  174. maxframe/dataframe/reduction/any.py +2 -2
  175. maxframe/dataframe/reduction/argmax.py +100 -0
  176. maxframe/dataframe/reduction/argmin.py +100 -0
  177. maxframe/dataframe/reduction/core.py +65 -18
  178. maxframe/dataframe/reduction/count.py +13 -9
  179. maxframe/dataframe/reduction/cov.py +166 -0
  180. maxframe/dataframe/reduction/cummax.py +2 -2
  181. maxframe/dataframe/reduction/cummin.py +2 -2
  182. maxframe/dataframe/reduction/cumprod.py +2 -2
  183. maxframe/dataframe/reduction/cumsum.py +2 -2
  184. maxframe/dataframe/reduction/custom_reduction.py +2 -2
  185. maxframe/dataframe/reduction/idxmax.py +185 -0
  186. maxframe/dataframe/reduction/idxmin.py +185 -0
  187. maxframe/dataframe/reduction/kurtosis.py +37 -30
  188. maxframe/dataframe/reduction/max.py +2 -2
  189. maxframe/dataframe/reduction/mean.py +9 -7
  190. maxframe/dataframe/reduction/median.py +2 -2
  191. maxframe/dataframe/reduction/min.py +2 -2
  192. maxframe/dataframe/reduction/nunique.py +9 -8
  193. maxframe/dataframe/reduction/prod.py +18 -13
  194. maxframe/dataframe/reduction/reduction_size.py +2 -2
  195. maxframe/dataframe/reduction/sem.py +13 -9
  196. maxframe/dataframe/reduction/skew.py +31 -27
  197. maxframe/dataframe/reduction/str_concat.py +10 -7
  198. maxframe/dataframe/reduction/sum.py +18 -14
  199. maxframe/dataframe/reduction/unique.py +20 -3
  200. maxframe/dataframe/reduction/var.py +16 -12
  201. maxframe/dataframe/reshape/__init__.py +38 -0
  202. maxframe/dataframe/{misc → reshape}/pivot.py +1 -0
  203. maxframe/dataframe/{misc → reshape}/pivot_table.py +1 -0
  204. maxframe/dataframe/reshape/unstack.py +114 -0
  205. maxframe/dataframe/sort/__init__.py +8 -0
  206. maxframe/dataframe/sort/argsort.py +62 -0
  207. maxframe/dataframe/sort/core.py +1 -0
  208. maxframe/dataframe/sort/nlargest.py +238 -0
  209. maxframe/dataframe/sort/nsmallest.py +228 -0
  210. maxframe/dataframe/statistics/__init__.py +3 -3
  211. maxframe/dataframe/statistics/corr.py +1 -0
  212. maxframe/dataframe/statistics/quantile.py +2 -2
  213. maxframe/dataframe/tests/test_typing.py +104 -0
  214. maxframe/dataframe/tests/test_utils.py +66 -2
  215. maxframe/dataframe/typing_.py +185 -0
  216. maxframe/dataframe/utils.py +95 -26
  217. maxframe/dataframe/window/aggregation.py +8 -4
  218. maxframe/dataframe/window/core.py +14 -1
  219. maxframe/dataframe/window/ewm.py +1 -3
  220. maxframe/dataframe/window/expanding.py +37 -35
  221. maxframe/dataframe/window/rolling.py +49 -39
  222. maxframe/dataframe/window/tests/test_expanding.py +1 -7
  223. maxframe/dataframe/window/tests/test_rolling.py +1 -1
  224. maxframe/env.py +7 -4
  225. maxframe/errors.py +2 -2
  226. maxframe/io/objects/tests/test_object_io.py +4 -2
  227. maxframe/io/odpsio/schema.py +9 -3
  228. maxframe/io/odpsio/tableio.py +7 -2
  229. maxframe/io/odpsio/tests/test_schema.py +198 -83
  230. maxframe/io/odpsio/tests/test_volumeio.py +4 -15
  231. maxframe/io/odpsio/volumeio.py +23 -8
  232. maxframe/learn/__init__.py +10 -2
  233. maxframe/learn/cluster/__init__.py +15 -0
  234. maxframe/learn/cluster/_kmeans.py +782 -0
  235. maxframe/learn/contrib/llm/core.py +2 -0
  236. maxframe/learn/contrib/xgboost/core.py +87 -1
  237. maxframe/learn/contrib/xgboost/train.py +5 -2
  238. maxframe/learn/core.py +66 -0
  239. maxframe/learn/linear_model/_base.py +58 -1
  240. maxframe/learn/linear_model/_lin_reg.py +1 -1
  241. maxframe/learn/metrics/__init__.py +6 -0
  242. maxframe/learn/metrics/_classification.py +145 -0
  243. maxframe/learn/metrics/_ranking.py +477 -0
  244. maxframe/learn/metrics/_scorer.py +60 -0
  245. maxframe/learn/metrics/pairwise/__init__.py +21 -0
  246. maxframe/learn/metrics/pairwise/core.py +77 -0
  247. maxframe/learn/metrics/pairwise/cosine.py +115 -0
  248. maxframe/learn/metrics/pairwise/euclidean.py +176 -0
  249. maxframe/learn/metrics/pairwise/haversine.py +96 -0
  250. maxframe/learn/metrics/pairwise/manhattan.py +80 -0
  251. maxframe/learn/metrics/pairwise/pairwise.py +127 -0
  252. maxframe/learn/metrics/pairwise/pairwise_distances_topk.py +121 -0
  253. maxframe/learn/metrics/pairwise/rbf_kernel.py +51 -0
  254. maxframe/learn/metrics/tests/__init__.py +13 -0
  255. maxframe/learn/metrics/tests/test_scorer.py +26 -0
  256. maxframe/learn/utils/__init__.py +1 -1
  257. maxframe/learn/utils/checks.py +1 -2
  258. maxframe/learn/utils/core.py +59 -0
  259. maxframe/learn/utils/extmath.py +37 -0
  260. maxframe/learn/utils/odpsio.py +193 -0
  261. maxframe/learn/utils/validation.py +2 -2
  262. maxframe/lib/compat.py +40 -0
  263. maxframe/lib/dtypes_extension/__init__.py +16 -1
  264. maxframe/lib/dtypes_extension/_fake_arrow_dtype.py +604 -0
  265. maxframe/lib/dtypes_extension/blob.py +304 -0
  266. maxframe/lib/dtypes_extension/dtypes.py +40 -0
  267. maxframe/lib/dtypes_extension/tests/test_blob.py +88 -0
  268. maxframe/lib/dtypes_extension/tests/test_dtypes.py +16 -1
  269. maxframe/lib/dtypes_extension/tests/test_fake_arrow_dtype.py +75 -0
  270. maxframe/lib/filesystem/_oss_lib/common.py +122 -50
  271. maxframe/lib/filesystem/_oss_lib/glob.py +1 -1
  272. maxframe/lib/filesystem/_oss_lib/handle.py +21 -25
  273. maxframe/lib/filesystem/base.py +1 -1
  274. maxframe/lib/filesystem/core.py +1 -1
  275. maxframe/lib/filesystem/oss.py +115 -46
  276. maxframe/lib/filesystem/tests/test_oss.py +74 -36
  277. maxframe/lib/mmh3.cpython-38-darwin.so +0 -0
  278. maxframe/lib/wrapped_pickle.py +10 -0
  279. maxframe/opcodes.py +33 -15
  280. maxframe/protocol.py +12 -0
  281. maxframe/serialization/__init__.py +11 -2
  282. maxframe/serialization/arrow.py +38 -13
  283. maxframe/serialization/blob.py +32 -0
  284. maxframe/serialization/core.cpython-38-darwin.so +0 -0
  285. maxframe/serialization/core.pyx +39 -1
  286. maxframe/serialization/exception.py +2 -4
  287. maxframe/serialization/numpy.py +11 -0
  288. maxframe/serialization/pandas.py +46 -9
  289. maxframe/serialization/serializables/core.py +2 -2
  290. maxframe/serialization/tests/test_serial.py +29 -2
  291. maxframe/tensor/__init__.py +38 -8
  292. maxframe/tensor/arithmetic/__init__.py +19 -10
  293. maxframe/tensor/arithmetic/iscomplexobj.py +53 -0
  294. maxframe/tensor/arithmetic/tests/test_arithmetic.py +6 -0
  295. maxframe/tensor/core.py +3 -2
  296. maxframe/tensor/datasource/tests/test_datasource.py +2 -1
  297. maxframe/tensor/extensions/__init__.py +2 -0
  298. maxframe/tensor/extensions/apply_chunk.py +3 -3
  299. maxframe/tensor/extensions/rebalance.py +65 -0
  300. maxframe/tensor/fft/__init__.py +32 -0
  301. maxframe/tensor/fft/core.py +168 -0
  302. maxframe/tensor/fft/fft.py +112 -0
  303. maxframe/tensor/fft/fft2.py +118 -0
  304. maxframe/tensor/fft/fftfreq.py +80 -0
  305. maxframe/tensor/fft/fftn.py +123 -0
  306. maxframe/tensor/fft/fftshift.py +79 -0
  307. maxframe/tensor/fft/hfft.py +112 -0
  308. maxframe/tensor/fft/ifft.py +114 -0
  309. maxframe/tensor/fft/ifft2.py +115 -0
  310. maxframe/tensor/fft/ifftn.py +123 -0
  311. maxframe/tensor/fft/ifftshift.py +73 -0
  312. maxframe/tensor/fft/ihfft.py +93 -0
  313. maxframe/tensor/fft/irfft.py +118 -0
  314. maxframe/tensor/fft/irfft2.py +62 -0
  315. maxframe/tensor/fft/irfftn.py +114 -0
  316. maxframe/tensor/fft/rfft.py +116 -0
  317. maxframe/tensor/fft/rfft2.py +63 -0
  318. maxframe/tensor/fft/rfftfreq.py +87 -0
  319. maxframe/tensor/fft/rfftn.py +113 -0
  320. maxframe/tensor/indexing/fill_diagonal.py +1 -7
  321. maxframe/tensor/linalg/__init__.py +7 -0
  322. maxframe/tensor/linalg/_einsumfunc.py +1025 -0
  323. maxframe/tensor/linalg/cholesky.py +117 -0
  324. maxframe/tensor/linalg/einsum.py +339 -0
  325. maxframe/tensor/linalg/lstsq.py +100 -0
  326. maxframe/tensor/linalg/matrix_norm.py +75 -0
  327. maxframe/tensor/linalg/norm.py +249 -0
  328. maxframe/tensor/linalg/solve.py +72 -0
  329. maxframe/tensor/linalg/solve_triangular.py +2 -2
  330. maxframe/tensor/linalg/vector_norm.py +113 -0
  331. maxframe/tensor/misc/__init__.py +24 -1
  332. maxframe/tensor/misc/argwhere.py +72 -0
  333. maxframe/tensor/misc/array_split.py +46 -0
  334. maxframe/tensor/misc/broadcast_arrays.py +57 -0
  335. maxframe/tensor/misc/copyto.py +130 -0
  336. maxframe/tensor/misc/delete.py +104 -0
  337. maxframe/tensor/misc/dsplit.py +68 -0
  338. maxframe/tensor/misc/ediff1d.py +74 -0
  339. maxframe/tensor/misc/expand_dims.py +85 -0
  340. maxframe/tensor/misc/flip.py +90 -0
  341. maxframe/tensor/misc/fliplr.py +64 -0
  342. maxframe/tensor/misc/flipud.py +68 -0
  343. maxframe/tensor/misc/hsplit.py +85 -0
  344. maxframe/tensor/misc/insert.py +139 -0
  345. maxframe/tensor/misc/moveaxis.py +83 -0
  346. maxframe/tensor/misc/result_type.py +88 -0
  347. maxframe/tensor/misc/roll.py +124 -0
  348. maxframe/tensor/misc/rollaxis.py +77 -0
  349. maxframe/tensor/misc/shape.py +89 -0
  350. maxframe/tensor/misc/split.py +190 -0
  351. maxframe/tensor/misc/tile.py +109 -0
  352. maxframe/tensor/misc/vsplit.py +74 -0
  353. maxframe/tensor/reduction/array_equal.py +2 -1
  354. maxframe/tensor/sort/__init__.py +2 -0
  355. maxframe/tensor/sort/argpartition.py +98 -0
  356. maxframe/tensor/sort/partition.py +228 -0
  357. maxframe/tensor/spatial/__init__.py +15 -0
  358. maxframe/tensor/spatial/distance/__init__.py +17 -0
  359. maxframe/tensor/spatial/distance/cdist.py +421 -0
  360. maxframe/tensor/spatial/distance/pdist.py +398 -0
  361. maxframe/tensor/spatial/distance/squareform.py +153 -0
  362. maxframe/tensor/special/__init__.py +159 -21
  363. maxframe/tensor/special/airy.py +55 -0
  364. maxframe/tensor/special/bessel.py +199 -0
  365. maxframe/tensor/special/core.py +65 -4
  366. maxframe/tensor/special/ellip_func_integrals.py +155 -0
  367. maxframe/tensor/special/ellip_harm.py +55 -0
  368. maxframe/tensor/special/err_fresnel.py +223 -0
  369. maxframe/tensor/special/gamma_funcs.py +303 -0
  370. maxframe/tensor/special/hypergeometric_funcs.py +69 -0
  371. maxframe/tensor/special/info_theory.py +189 -0
  372. maxframe/tensor/special/misc.py +21 -0
  373. maxframe/tensor/statistics/__init__.py +6 -0
  374. maxframe/tensor/statistics/corrcoef.py +77 -0
  375. maxframe/tensor/statistics/cov.py +222 -0
  376. maxframe/tensor/statistics/digitize.py +126 -0
  377. maxframe/tensor/statistics/histogram.py +520 -0
  378. maxframe/tensor/statistics/median.py +85 -0
  379. maxframe/tensor/statistics/ptp.py +89 -0
  380. maxframe/tensor/utils.py +3 -3
  381. maxframe/tests/test_utils.py +43 -1
  382. maxframe/tests/utils.py +3 -13
  383. maxframe/typing_.py +2 -0
  384. maxframe/udf.py +27 -2
  385. maxframe/utils.py +193 -19
  386. {maxframe-2.0.0b1.dist-info → maxframe-2.2.0.dist-info}/METADATA +3 -2
  387. {maxframe-2.0.0b1.dist-info → maxframe-2.2.0.dist-info}/RECORD +395 -240
  388. maxframe_client/fetcher.py +35 -4
  389. maxframe_client/session/odps.py +7 -2
  390. maxframe_client/tests/test_fetcher.py +76 -3
  391. maxframe_client/tests/test_session.py +4 -1
  392. /maxframe/dataframe/{misc → reshape}/melt.py +0 -0
  393. /maxframe/dataframe/{misc → reshape}/stack.py +0 -0
  394. {maxframe-2.0.0b1.dist-info → maxframe-2.2.0.dist-info}/WHEEL +0 -0
  395. {maxframe-2.0.0b1.dist-info → maxframe-2.2.0.dist-info}/top_level.txt +0 -0
@@ -1,137 +1,160 @@
1
- maxframe-2.0.0b1.dist-info/RECORD,,
2
- maxframe-2.0.0b1.dist-info/WHEEL,sha256=WSC5vw88KFdc7PZTZHSa_uVa_pn3BLiNkYp0y_C2kkQ,112
3
- maxframe-2.0.0b1.dist-info/top_level.txt,sha256=O_LOO6KS5Y1ZKdmCjA9mzfg0-b1sB_P6Oy-hD8aSDfM,25
4
- maxframe-2.0.0b1.dist-info/METADATA,sha256=F55mPFtrUykyU_Qqn1iiEJuCRqXpbOE3E_rEdJNVkUw,3184
1
+ maxframe-2.2.0.dist-info/RECORD,,
2
+ maxframe-2.2.0.dist-info/WHEEL,sha256=WSC5vw88KFdc7PZTZHSa_uVa_pn3BLiNkYp0y_C2kkQ,112
3
+ maxframe-2.2.0.dist-info/top_level.txt,sha256=O_LOO6KS5Y1ZKdmCjA9mzfg0-b1sB_P6Oy-hD8aSDfM,25
4
+ maxframe-2.2.0.dist-info/METADATA,sha256=T8E-UfFzOvI0Bn4pVKX8W9SJ6K7ja6hSkcnEi0RDrks,3241
5
5
  maxframe_client/conftest.py,sha256=JkQKlLZqd9uJekiO8HvMvEegidF-6KlCVFcg-KmQLLY,643
6
6
  maxframe_client/__init__.py,sha256=z4QT02esANpxtSVZPO_96693bqSvhG82e4suaD6Ll1E,689
7
- maxframe_client/fetcher.py,sha256=HPzpm2FM6KkY0HH2Rg-HVYCBdkudsxxGVWaT9jOhiUU,12246
7
+ maxframe_client/fetcher.py,sha256=kvvh59I3nu7jLSZnyEkrrY_uUnEHg9BivXMbdQJAFnE,13357
8
8
  maxframe_client/clients/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
9
9
  maxframe_client/clients/framedriver.py,sha256=OFMN1EDsF34kAXbPAKukl9gAS8W24Zpk9OeAKXl7X6Y,4975
10
- maxframe_client/tests/test_session.py,sha256=KoggvuZGC8bJH6NgIMaxw3ya53pw_9ku0X6DoL5ep_0,12463
10
+ maxframe_client/tests/test_session.py,sha256=RTQQ5UJf_crtm0cptRIoYXOCQRfwjftxRHFnb33UdOY,12581
11
11
  maxframe_client/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
12
- maxframe_client/tests/test_fetcher.py,sha256=SJwtLrUvchJDi8vMJVbNgLYHoKxxWbAJ9bccUZt25l8,4158
12
+ maxframe_client/tests/test_fetcher.py,sha256=k8Dca6v26AxJ3FoPs1c1trU1eWl85Dvm0uj8VDRRjAo,6707
13
13
  maxframe_client/session/task.py,sha256=vTGUw6vInv7xlcLtg6a4BdXgpVxiWmejBMGt9oGXkxQ,12100
14
14
  maxframe_client/session/graph.py,sha256=GUq6gNpi4m5PAdnERBE8zJRcYXLLoBueEEmmel4x5qE,4376
15
15
  maxframe_client/session/__init__.py,sha256=NgquxV2h6TAb_0xLh0mQip-2i-Glxy3fjWiWXfRTLRE,832
16
16
  maxframe_client/session/consts.py,sha256=E6PnPNyn2Bt9MHuGXATnb40m1AN0QfLG1Pl0KvsYFvk,1391
17
- maxframe_client/session/odps.py,sha256=uwK4txjrRTY7LXN5e8Buq_RVRraBSFJV8qrJ30jlPu0,30495
17
+ maxframe_client/session/odps.py,sha256=QBqZzEO9cCBfTQOY2sml_ufUrTFrbadBXmQ4jK6TBNc,30665
18
18
  maxframe_client/session/tests/test_task.py,sha256=Q5srH-w58vYS3NVeuY_59hLn2d-ANJh8nu2dbI7rRFA,4702
19
19
  maxframe_client/session/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
20
- maxframe/_utils.pyx,sha256=d427G0Uo9Ggx6-PCx5J2f3zdpqwnlCBDypfTaVoRoJE,17028
21
- maxframe/conftest.py,sha256=GzkbLDw7_tQX3pnqg9Ep58HEilM8HP4W8rLQwudJqnM,7176
22
- maxframe/opcodes.py,sha256=4btWUbGmmCS-Rz-Jvk-enlbQKQOoMiPArzDjG_m0izM,11139
23
- maxframe/env.py,sha256=ZvORA7u_4qjNTLONJuvkJVcAUguTRBSggDd3Ta7yTjA,1455
20
+ maxframe/_utils.pyx,sha256=ZN-XnGr2Pn8gdo8hu8_s-SQerSMjPwbi58rrQNAkc5s,17326
21
+ maxframe/conftest.py,sha256=WJKxXwQRNElsauLUnIZPqDdvJyFTTdxyKG0kPxnebsU,7879
22
+ maxframe/opcodes.py,sha256=uKv1afPABf9ghxxspoAjq39yo0DuD5pPcembpMlLvFU,11470
23
+ maxframe/env.py,sha256=mR1C6G4VX6Qm_gVLqq92BGgHpNDYuu_L-MwlNzqVPD0,1599
24
24
  maxframe/mixin.py,sha256=4raAFPQ59wGdHlgeEw0TZgDT4_ZECLmK23JtMYzAmUM,5645
25
- maxframe/protocol.py,sha256=ctqynoquwYvUPYCToe2dbREomS9YuGEkDEeKkTZD9PE,20386
25
+ maxframe/protocol.py,sha256=LyhZqwtlJi7k2Gn9fmIpqWiP4YBWLZuG9t15_Edk7HI,20891
26
26
  maxframe/session.py,sha256=6EE_lJebgJYbHRMrw4-1rdOFYsKH-m5dX8EkJQ4OqEA,34784
27
- maxframe/__init__.py,sha256=Gws_d9VblPR6Ld36_hSueVzs5mdN1ns4fMpgvbcEsxo,1004
27
+ maxframe/__init__.py,sha256=y8wQxypXuDpwgi2bRSKEYjkCyq4efN3C_7KpaFMJvKY,1056
28
28
  maxframe/_utils.pyi,sha256=-Rd4BZ7kF1695nNtjivOS3Zavpq99NYWO4tBMOL7Tac,916
29
- maxframe/_utils.cpython-38-darwin.so,sha256=QcuyFBMQDi0xHHj-_GAOBvsjZovyWBoozutTwFf4tb8,846672
30
- maxframe/utils.py,sha256=myu__DECLUXG5m4bulrv_qGUW0ccqqGRMTC-vC3GMXI,46878
29
+ maxframe/_utils.cpython-38-darwin.so,sha256=_Hm1QHjHtS0Ssar0LSdk9WYS4J7TjzMjBN58YNC4Mo8,846816
30
+ maxframe/utils.py,sha256=no2a7HI547OiYyQmtpF_9OHdoEkK5dQCt3MOgz6kdak,52444
31
31
  maxframe/extension.py,sha256=4u9K2lerFnwziWv2Aibm7S7nD_2nSPR4MKuegYpK8fM,2939
32
32
  maxframe/sperunner.py,sha256=H-cHHPt-SBbqonKRfInSseGdOCi67xbR6jUoD25ML00,5572
33
- maxframe/errors.py,sha256=aWFrndbs5Kf3CX9ZWG8n0cORrVpS6OA7UtUTJUwKs1M,1249
34
- maxframe/udf.py,sha256=11WDJwhvohtNs7XfGReE96wsChedCf4ARK4MtMYotjw,7515
35
- maxframe/typing_.py,sha256=V-xuayMMepLmG2Kg0V3bi8qRosRd2FV9mJ-kAWdhOjQ,1180
33
+ maxframe/errors.py,sha256=NoC6esSSYdjb2XVlPXw5BWNkMIvIMI4OHEe5JWQT2uY,1208
34
+ maxframe/udf.py,sha256=cUrNpdmfuKF1CoJrBjqZO7vgEkfea1cTVR4RChczMyk,8370
35
+ maxframe/typing_.py,sha256=_n0RSj7AawZedcihU_PPm6XghIA5sQSxQZIC2N87JPs,1263
36
36
  maxframe/_utils.pxd,sha256=ShrQD7uWMFVLT7j-zAMV6yWjQIlCbty_e7MHO6dzKv8,1154
37
37
  maxframe/dataframe/arrays.py,sha256=e-swkQgnUYymt8WONknNf-pMFAxwRhriYoh93m3G1k8,28752
38
- maxframe/dataframe/__init__.py,sha256=tFcEht0i3A_rAl_Y6Ybb0aCczI-kWBcJAwvwimmXtAw,2274
39
- maxframe/dataframe/core.py,sha256=VU4bTeTnQ-drCFTFJPdRWeumBVT171bqN9y3lMCkRgQ,75293
38
+ maxframe/dataframe/__init__.py,sha256=wQmZGvdyDm_bs0KqregePKtfiJSK0W8UmAIuz1RpHzs,2423
39
+ maxframe/dataframe/core.py,sha256=NVIaYgoGu1r07CEnvOCmdkm2AD_eJKXw9NU3az_q8o4,73383
40
40
  maxframe/dataframe/initializer.py,sha256=lnsLYJHcWQ9Kkqh7MrLTuOL4iZBOpB798YLs4G5Qzik,10852
41
- maxframe/dataframe/utils.py,sha256=r6GFJAqiAeqvbf-Mkb2DDi0dQorBjO2FabteTcIZs3k,54282
41
+ maxframe/dataframe/utils.py,sha256=Wb3fkRKMn1JVqQsqwy9nXHv3kR8fLqJwFFnjabtm1b0,56656
42
+ maxframe/dataframe/typing_.py,sha256=usBJmxsSjPtGcS2py2t5y9ZyG15coRi18dAcWDdKVdI,5776
42
43
  maxframe/dataframe/operators.py,sha256=OReFOB5F5H-AAYA-oE-_PPiVKK7QVVyOyj0VewqBmwM,6590
43
- maxframe/dataframe/statistics/corr.py,sha256=bJi8kL3q-tQDW2xXBVerV5WfESNmuUF790hUAbEpW7Q,9573
44
- maxframe/dataframe/statistics/quantile.py,sha256=ZizLXzuNOm1q8OB-a7-NCbX1nPkbZow4VBteg5TDScw,11610
45
- maxframe/dataframe/statistics/__init__.py,sha256=CYcsBvDyz-6anAaoKkjoM9gXUeiYVqPt9FioHchM9Tw,1084
44
+ maxframe/dataframe/statistics/corr.py,sha256=cXDdBa9sgoejm79mnLqE0cMPrKol2gRhHWohPhAYkhA,9614
45
+ maxframe/dataframe/statistics/quantile.py,sha256=A56aRl8n_T5IrALDEX5c8z-JWznzHPBk0IuTA2tniWk,11610
46
+ maxframe/dataframe/statistics/__init__.py,sha256=DJJci_F7XrgZDVbO1Ia8y-HEsehNUd5kucyH22Mq-uQ,1084
46
47
  maxframe/dataframe/statistics/tests/test_statistics.py,sha256=y6C1nYoHQKqdAoG-ZpxWytIj_o8CQDKbeHf_b-08nys,2806
47
48
  maxframe/dataframe/statistics/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
48
- maxframe/dataframe/misc/describe.py,sha256=xVos9wd8KTkWvRhcEbV3Svocy2olHr2J6cWXT93GaiM,4485
49
+ maxframe/dataframe/reshape/unstack.py,sha256=ab_e6Lr_xFL7AMtx_p2w9EwCYJpizjYxisP_Ma8-zwc,3837
50
+ maxframe/dataframe/reshape/__init__.py,sha256=0K4Q0VhoayJPzn4nBRGaA90twg5nlFZCXmCc_LiEeRk,1117
51
+ maxframe/dataframe/reshape/pivot_table.py,sha256=L-Oj0LhXMPOrtZHamYsMIbbEqxV49VoSIw3PZbEsP9k,10135
52
+ maxframe/dataframe/reshape/melt.py,sha256=shuliyrzoOFDXqgFD8eOcd40rXYdasFYlQcPcwvNjcQ,5470
53
+ maxframe/dataframe/reshape/stack.py,sha256=CKy_CW9mhYbXXFuciN1UcshKBVFEcwtPIrUCTv-gzSg,8049
54
+ maxframe/dataframe/reshape/pivot.py,sha256=fbqaftea864Rwpla9obV9JXDq6vfbiYj0o8qSo0t5E0,7798
55
+ maxframe/dataframe/misc/describe.py,sha256=5JWy33uSA0-zL7e1V9j9AqMMVvAeV9ipukSeWLEZOF4,10043
49
56
  maxframe/dataframe/misc/astype.py,sha256=QKo19cVwJkHbGieiSYoWDeRxajxz5RtUnqCTXlJBn7M,7873
50
- maxframe/dataframe/misc/to_numeric.py,sha256=p6pMks9pVnF_Y61XeaLuoK9wq2ayB07pZbJaJo2w4dM,6262
57
+ maxframe/dataframe/misc/to_numeric.py,sha256=GiTdFwNzzT1qV27EIMMAG9a0y3MesbPHUgtyMrjbwXs,6322
51
58
  maxframe/dataframe/misc/case_when.py,sha256=7eAYl4ruKnIR-N04zYiBPt44sLnHj3capN4A7RJu4fg,4983
52
59
  maxframe/dataframe/misc/check_monotonic.py,sha256=Vak5n_YBYQE3WBvKz0s0WqGlX8t79ehfsQVJdEEi4_I,2422
60
+ maxframe/dataframe/misc/check_unique.py,sha256=gNPXPR3pdhi9Z9bHFAW6MSoSQxJ2UccbJBSLYSn6tic,1329
61
+ maxframe/dataframe/misc/valid_index.py,sha256=5O9LAvp92nDEkdxhcMpkxr-q4U8VVdMhkaj62tE9duk,2619
53
62
  maxframe/dataframe/misc/cut.py,sha256=O09PhsPHWPuMZq4Qvay0Jfpstk2yZETn2d6wt4xbyzY,14050
54
- maxframe/dataframe/misc/get_dummies.py,sha256=jYDNUcNK4UAP3NEw_Zj0StkJSA7RXzRClquQUm8Y568,7652
55
- maxframe/dataframe/misc/__init__.py,sha256=8lAnPE8x-Rczj7T4m2Or_hdCOhQwXd4ApIAxe1nb4S4,4854
63
+ maxframe/dataframe/misc/get_dummies.py,sha256=NZUpI6l7sOftwSPMdntEqg4Z9fYr4F6f5E0cmA5I2iU,7802
64
+ maxframe/dataframe/misc/__init__.py,sha256=14-CaA-rANKaRE3C9l7BAyvrUcJfpafyQi1nweF4NTs,5253
56
65
  maxframe/dataframe/misc/qcut.py,sha256=LbItYs5OkMhEWMepTkVDLkt6tN683PybQbjmuHlM9n4,3737
57
66
  maxframe/dataframe/misc/pct_change.py,sha256=WgzbMOMLhc6iEvE6cT8_11lclLL5klkvokNjq7UKi94,2516
58
- maxframe/dataframe/misc/duplicated.py,sha256=DkqcNnlbYhWKt6PkAg2WqZJfiI_wz5imjPjpkdJuC0M,8534
59
- maxframe/dataframe/misc/pivot_table.py,sha256=RfUNNlyUFp2facbELxe8p_5nxmmSHGuteewpSY8osQ0,10070
60
- maxframe/dataframe/misc/map.py,sha256=ojt7qjbAConl0a2cGIxTyIZMVWFFeHd2Asgo40ubDik,8831
67
+ maxframe/dataframe/misc/duplicated.py,sha256=IY2hUFF9I3moBEb12RQJxq-UX2d_Pms56GIwZ1lxHnE,8532
68
+ maxframe/dataframe/misc/map.py,sha256=DXO8poVjfCgt17nGZu4eQv9fLWJ35qxy-BpJtjoF2nA,11504
61
69
  maxframe/dataframe/misc/memory_usage.py,sha256=-5HJK6WVEQd9mtML7cY2MpGbZ_MOsLTwmqGzlOBsLj4,7889
62
- maxframe/dataframe/misc/isin.py,sha256=aAxcjr-VTLW93mS-Cvj_RvQUqkpzXl3QQsqp5PB1oBk,7011
70
+ maxframe/dataframe/misc/isin.py,sha256=yvy2OP2EyBVVWJ7ScFVOXVZ7Re_7ptHk8C87ytwok-A,7066
63
71
  maxframe/dataframe/misc/rechunk.py,sha256=Z4QC2C1_xwtrbG6Km0KWQ5_7kZ35_dKIWtS8ooN6uxE,1956
64
72
  maxframe/dataframe/misc/shift.py,sha256=pHfLjNJToO81UGM72t9jStKLfx7CXLeEPjzRRrqxe2A,9028
65
- maxframe/dataframe/misc/transpose.py,sha256=wtTLmdKccdszt1K_PmrtMdIm7ekH4XIV1Igo7rg_1hk,3636
66
- maxframe/dataframe/misc/melt.py,sha256=shuliyrzoOFDXqgFD8eOcd40rXYdasFYlQcPcwvNjcQ,5470
67
- maxframe/dataframe/misc/stack.py,sha256=CKy_CW9mhYbXXFuciN1UcshKBVFEcwtPIrUCTv-gzSg,8049
68
- maxframe/dataframe/misc/transform.py,sha256=ARxtNQgKBegQ8BslCH67JbhVeh5S5BRnuW-J-GSVe2w,10944
73
+ maxframe/dataframe/misc/transpose.py,sha256=AfGdFHjrotTNmqLhAbQ9rj1x6rYdq6tEmFOykcOAtyI,3987
74
+ maxframe/dataframe/misc/transform.py,sha256=qD6IfjiXYKFgPkFi3BT99QBQGs46fSANQhnXrjzwJPU,11133
69
75
  maxframe/dataframe/misc/explode.py,sha256=zpEnxb3-g47MoMevKQ98ewv33rBxRMkTW6DyNdU7KZQ,5011
70
76
  maxframe/dataframe/misc/diff.py,sha256=xKG4cPOTvjEeu6zXsb5nGPIXvfya17Zi1sb_zz76EuI,5491
71
- maxframe/dataframe/misc/drop_duplicates.py,sha256=k2yY0n8XivukkLvTQ_AhG4cT_4ddoI1KZDrLCCzbkAU,8689
72
- maxframe/dataframe/misc/_duplicate.py,sha256=Rf0sp0aI0P_QDWslXnMBYyIGxvzGls54It9JHsHlXcM,1584
77
+ maxframe/dataframe/misc/drop_duplicates.py,sha256=7nufUF_y7BK0CblV_0QUiFmq4zCjvch6YipwK1nHNBY,8687
78
+ maxframe/dataframe/misc/_duplicate.py,sha256=P9ULkzWsbT_khbQS-97cH4sbcEJTpgdv8x2j7jB4SYY,1753
73
79
  maxframe/dataframe/misc/eval.py,sha256=-7MMIJvkyBvOLkiG4up5mRi1OzWiPIKl26a8Tl7qVtc,24313
74
- maxframe/dataframe/misc/value_counts.py,sha256=SheHbTPw2Hz0YVYtsqnjzWLO7fV2krmWDHWz1PVRIqs,5314
80
+ maxframe/dataframe/misc/value_counts.py,sha256=mXh-I2rLyxTVr5bLCd-RizqRAEHVf70zSWB63YSNSHA,6169
81
+ maxframe/dataframe/misc/clip.py,sha256=o4fzLXe9M10RhweVmsQ70NkExjs3cjtfTVPITWdyx4c,4643
75
82
  maxframe/dataframe/misc/select_dtypes.py,sha256=ktsfTu9cBf76XUGqYxBtCTZLnZTCyN7L6Iw8zRYvR5k,3144
76
- maxframe/dataframe/misc/pivot.py,sha256=xwqdvr4kmrurQ9pldUF3REVKuf38zRyWHj3NWeuw3dM,7744
77
83
  maxframe/dataframe/misc/drop.py,sha256=mSTGrgH9pjm8nd-7qt7T_O8xnoHXEes7s8i9fCNU-ZM,13050
78
- maxframe/dataframe/misc/apply.py,sha256=tw3Qeh2Cd4diEfRVxfSnqXzkVfyllkn_6trRnMhIa5c,24137
79
- maxframe/dataframe/misc/tests/test_misc.py,sha256=WtsngNeN-vOVYg_k2FBFFga_QmNL1UjZ8ZmhfSpbOhI,19849
84
+ maxframe/dataframe/misc/apply.py,sha256=MxNqmTiZECeUYVz0Dp1p-g1DAqJlSK8Rkvt_NsMrwJU,24153
85
+ maxframe/dataframe/misc/tests/test_misc.py,sha256=XfDOo2Eca8J1yrhpzqThU-v1uvlTGEHq7sQnvxj1S-I,20173
80
86
  maxframe/dataframe/misc/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
81
87
  maxframe/dataframe/datasource/index.py,sha256=09h_YKyTIhpy8aUb2dsRJJDciiIloLNFyTDGTg2ESgg,4401
82
- maxframe/dataframe/datasource/read_csv.py,sha256=Y7jMkVHzYu9BH7ipRaZIu8CfDngZzBb9JIyb_1iGuQ0,24392
83
- maxframe/dataframe/datasource/from_index.py,sha256=WeHlwR2C4RRuKYtkt9uJdD9dkdJlWfrQvMYLtGEqimE,1964
88
+ maxframe/dataframe/datasource/read_csv.py,sha256=2hCKYvx30oBm72AyClM64RBpA2KP9cHCXkmoEGhDF4s,24386
89
+ maxframe/dataframe/datasource/from_index.py,sha256=Ouwbr1tVjJiVr_xP5dydijE2gPaN_phWxDi8ed0PHHw,1959
84
90
  maxframe/dataframe/datasource/dataframe.py,sha256=-V8qjEhRwaFeOYeFzjf8h5A1gqpgH_-GbNCf4Au7VRM,2023
85
91
  maxframe/dataframe/datasource/series.py,sha256=Sou6J9hg3JJdSxuTcJjsD5EWPmvVB1J5I_ys24IkBe4,1909
86
- maxframe/dataframe/datasource/__init__.py,sha256=LaVpAg_oMJ2OofTlyjw-v9YLRQNfPQYHNVkWnCXPRCc,640
87
- maxframe/dataframe/datasource/read_odps_query.py,sha256=1z0o0ym_9_4fQ0xj-CVLnEITSloc4UxrIsNkDBgJgck,15687
92
+ maxframe/dataframe/datasource/__init__.py,sha256=7dFeygB7sWCEpSyA5G4UGjlSqz6UQ-zzHQz0yuMHIrM,1165
93
+ maxframe/dataframe/datasource/read_odps_query.py,sha256=EG-H5EP0YZE_04jjYcz6OC_b0JMcScNZ5Zf-dhKo-Tw,17639
88
94
  maxframe/dataframe/datasource/core.py,sha256=UfV0vLzh96fnWkwPwK1PiwHZkSydf8DR2aBNrlSXU7c,2958
89
95
  maxframe/dataframe/datasource/date_range.py,sha256=tYKZPn8eAU_gxpEDNgNX-SCQneYwXCOPuGk5b19HkLM,17527
90
96
  maxframe/dataframe/datasource/read_odps_table.py,sha256=l5Nq5VLsBFhwDp7YZtkWGTpupLDe5RiNm04ReYK-QC8,9989
97
+ maxframe/dataframe/datasource/from_dict.py,sha256=SOzAHfOLfxhTeqORSQWhmqFaNrHFzrtuKynDmh6-4IM,4238
91
98
  maxframe/dataframe/datasource/read_parquet.py,sha256=zxP2DXen443dP83wUItw_5Yi6X_wZn731-pAqycwmOw,14769
92
- maxframe/dataframe/datasource/from_tensor.py,sha256=NVgD9l9kTfW9VcVCLQw0Jr2tefWWVPLFy46rShisvbo,15159
93
- maxframe/dataframe/datasource/from_records.py,sha256=84pnH79qJOgD3tp-8aJxZN7tfNC-HPOWBGSpTp5OmkM,3699
94
- maxframe/dataframe/datasource/tests/test_datasource.py,sha256=O8KURMdYg2EwUpMAWq1RuRLnRVLvWU0Rh3Gzx6j7JPc,19814
99
+ maxframe/dataframe/datasource/from_tensor.py,sha256=lGDjzvVaLo3pCuQ1iP9W7rJx0BLt_uhDx-AMGJxmQx8,17938
100
+ maxframe/dataframe/datasource/from_records.py,sha256=pVHZyTtA76OZGLQ_tPp0oECx-AEmucEXbNbDtfyy5oE,6221
101
+ maxframe/dataframe/datasource/tests/test_datasource.py,sha256=HEanLHDx_vGDpj6qwOC3tDGljPRWEuTV6LiW4YLrD6I,22831
95
102
  maxframe/dataframe/datasource/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
103
+ maxframe/dataframe/sort/argsort.py,sha256=-G8iSQAgUSdLcPJcNCb-SscNmRp3_zJCiZ0lX1w0i5U,2131
96
104
  maxframe/dataframe/sort/sort_index.py,sha256=gmv55CmKkAsWrA9bWf45JfX8IvMc0FuFloqb6D3cziI,5412
97
- maxframe/dataframe/sort/__init__.py,sha256=E76aFGW1nejyX-_YV4AXlbl3vj0gSANgif5kbrmMWL4,1160
105
+ maxframe/dataframe/sort/__init__.py,sha256=-qLCvYnaiekfc7KYZNeA69rf1DmnhPVXO8OWLEC7Pys,1557
98
106
  maxframe/dataframe/sort/sort_values.py,sha256=GXoghiR8K750Wh6now-wSwYGpcPYsXgi0rA3C95dyzQ,8702
99
- maxframe/dataframe/sort/core.py,sha256=NRb7dUrDCn6YMwcAgf4BslVbig42nsaD8sAQdHlpI8s,1224
107
+ maxframe/dataframe/sort/core.py,sha256=Y865SF5nzpneh37ELV260vpintqT1co-dte1ZnTeyHU,1281
108
+ maxframe/dataframe/sort/nlargest.py,sha256=Ho1VuqEcxbndViwj0WzaPu3rGOGBIM-Y4z-Tg3jjs-w,7954
109
+ maxframe/dataframe/sort/nsmallest.py,sha256=7pUFgGWjA1etnsT2KnGZ81bIcQkQB6r98A93SvZtqvs,7561
100
110
  maxframe/dataframe/sort/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
101
111
  maxframe/dataframe/sort/tests/test_sort.py,sha256=wgKIfOb9VY200i7I3suSru7ZNhA5zg_vQuKcprOQUD4,2604
112
+ maxframe/dataframe/merge/update.py,sha256=PbBSCknc5_JoE_DrfXBpe7UH7BP4NrYUfkow5taJpno,7875
113
+ maxframe/dataframe/merge/combine_first.py,sha256=9qYF9hEagAdjuVwy1eX1kTfDZHxOLUFri-cSES9lo9s,3689
102
114
  maxframe/dataframe/merge/merge.py,sha256=F7Gjfv4bDLiwgotRoVFYTWUp4mcden53DChuQwso4W4,29864
103
- maxframe/dataframe/merge/concat.py,sha256=_rqs7eCwunyOxVp2AFhnZNuJvO6AWq50BnPLERYRf98,11282
104
- maxframe/dataframe/merge/__init__.py,sha256=VVhOQiIOKqA4cNoAOzFK8pJvqWX76O6JF8Ym8CFqUsA,1096
105
- maxframe/dataframe/merge/append.py,sha256=_dRDcT6EvDUVnwP1QQv-85DWRu0u25HCt1jVntRlpro,4852
115
+ maxframe/dataframe/merge/concat.py,sha256=CqdM8wXZxP1RtzcmrSx1IG7Z8l2-pdIKgq5S9IsE6hs,17569
116
+ maxframe/dataframe/merge/__init__.py,sha256=PociRSsMolzC0X38Kzl6HMj_OHkdSrnPr1OUCq3Qxxw,1598
117
+ maxframe/dataframe/merge/append.py,sha256=RhKc6Js3H_vhDAzGCMpyNGOxaAQzHLOK11C8WexKnCg,3478
118
+ maxframe/dataframe/merge/compare.py,sha256=Ps-mtkhoqSH9yjx7-brqma4VRpTM6gQQhKldwiTGtKc,11530
106
119
  maxframe/dataframe/merge/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
107
120
  maxframe/dataframe/merge/tests/test_merge.py,sha256=-mJirUWZJ5qT-BSW0TwS-fhGSgrChf9nXYp6RHrN1PQ,12965
108
- maxframe/dataframe/accessors/__init__.py,sha256=HuRxxHBHRti4hQkHHHHKdAABkLKSbeYr-prI3NlSAKg,654
121
+ maxframe/dataframe/accessors/compat.py,sha256=87YooXBQhVWmUd95RnhxaWL5dFaHQY401l-dQmEsAGU,1490
122
+ maxframe/dataframe/accessors/__init__.py,sha256=-lIm24txItBohjIZkM8cXEVW1Hte_6_IXvqZCvaA-5E,663
109
123
  maxframe/dataframe/accessors/string_/accessor.py,sha256=5g0KVtl4DPzz-hA0qYZ_P5XwwMK2Tagn7L1DF6KJy5k,8054
110
- maxframe/dataframe/accessors/string_/__init__.py,sha256=wRjIeDqzEHGUcxe0G1UKfJC5c_HyImUhn6xtWcSQeMQ,1073
124
+ maxframe/dataframe/accessors/string_/__init__.py,sha256=aHtS0_KTO-_ODphkvsb1OzKIgj6ugcfTVQmZnn_pFkY,1179
111
125
  maxframe/dataframe/accessors/string_/core.py,sha256=y4Tvg1hZvmOdC1sh6yl3N3AL0-1YB-etviJ4MOAEx5s,8193
112
126
  maxframe/dataframe/accessors/string_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
113
127
  maxframe/dataframe/accessors/string_/tests/test_string_accessor.py,sha256=NE5pAtKPJgs-pJp-G-SRiWH6T6wZlrT3anmgsF3XU-A,2476
114
128
  maxframe/dataframe/accessors/list_/accessor.py,sha256=4gyVqugtrz6XbGnHUG1ZjI_WOe1sSbQXM0sneNtQ9a0,1309
115
- maxframe/dataframe/accessors/list_/length.py,sha256=1-0Ttc4hDM9FraQzANOSNQXFm-wliE5gDLO98H-EOC4,2134
116
- maxframe/dataframe/accessors/list_/__init__.py,sha256=1viWNK-Xxq05LbYF0fRMAQZeKMzZgsVAz2A1vIzlQgo,1248
117
- maxframe/dataframe/accessors/list_/getitem.py,sha256=PpfQ4GW6Mx7UvoL_ZInA8vDKOFDKupXFI9taITkzLcI,3744
129
+ maxframe/dataframe/accessors/list_/length.py,sha256=78jE54upmXT_ddjqHmBM_xgjgbBgXX0YEai53E4d4Dc,1853
130
+ maxframe/dataframe/accessors/list_/__init__.py,sha256=6jzqdwt1166y_I7Sf2KW1bq5m6lb0a38CzV4KSO1t_I,1248
131
+ maxframe/dataframe/accessors/list_/getitem.py,sha256=ox_Tg2K3G6mGWfnjtrmsqe5IEicSf9Q4aYEZtIJIzk0,3637
132
+ maxframe/dataframe/accessors/list_/core.py,sha256=XILXzXcRC19tZCu_OeBa-PU2ln4XA125q--pPUK2AhA,1814
118
133
  maxframe/dataframe/accessors/list_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
119
- maxframe/dataframe/accessors/list_/tests/test_list_accessor.py,sha256=jC7WRktqnntX4BAz0utVG0_Z2rzpqDvl8Kmzk_pus8w,2381
134
+ maxframe/dataframe/accessors/list_/tests/test_list_accessor.py,sha256=fYO1k31uPz6tcHyFGa9A0V9k6y-EqPDtMnuYi5YO4SM,2463
120
135
  maxframe/dataframe/accessors/dict_/accessor.py,sha256=0lC_5yk16pdHRLiop_X_O5AWF4bCe9YsVbYgVOfS7e8,1308
121
- maxframe/dataframe/accessors/dict_/setitem.py,sha256=2kbDnyRRm9EWbRfDfPkD4PIiyjMkae9kLUyygRd845g,2953
122
- maxframe/dataframe/accessors/dict_/length.py,sha256=etPPuTrUUSKwuXefqhFfTlEWkOP6mgJ9Z4MtK4q8jbk,2207
123
- maxframe/dataframe/accessors/dict_/remove.py,sha256=PrCCexC_IWsw0Esu1T6VytP5LuA8u5g3XtyJtZz6FAQ,2986
136
+ maxframe/dataframe/accessors/dict_/setitem.py,sha256=HnwpRW5cVDPIcvNTiX_3dikwGtgPx-HJG599a7hsAI0,2680
137
+ maxframe/dataframe/accessors/dict_/length.py,sha256=kNuaZ4yBdDk5mN2Rya0UD4gw1_Czu0_JKsooWcagltI,1926
138
+ maxframe/dataframe/accessors/dict_/remove.py,sha256=i9e8qlfBOjICo3Q9mNgYtU83ikxutWmRjhK2HQj-CUE,2701
124
139
  maxframe/dataframe/accessors/dict_/__init__.py,sha256=uZJdw98WvCzfHiSjOSrbeCEN0eL2lWziUGXvsqe4oks,1503
125
- maxframe/dataframe/accessors/dict_/getitem.py,sha256=cQcqzpU9BnoFbJIEvcKRvEMpuo9xg-kJpU177hVdzoc,4395
126
- maxframe/dataframe/accessors/dict_/contains.py,sha256=qZze6k0tzpmGCO2bGoFgGd6ZLSweQZX6WbTsvT_Jalw,2527
140
+ maxframe/dataframe/accessors/dict_/getitem.py,sha256=WZGfWwRogML6yMwst1Ev2omhuRqdkSbSjV1E-Ehl2zo,4367
141
+ maxframe/dataframe/accessors/dict_/core.py,sha256=vNLLAD4pnothV4haHn8cD1ftlnqthOlUY580kmsIKEM,1814
142
+ maxframe/dataframe/accessors/dict_/contains.py,sha256=XMH4DR3ZiXGo4Um3FHm5lm9EJCR1aUxxl5RthqMhoeE,2276
127
143
  maxframe/dataframe/accessors/dict_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
128
- maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py,sha256=tfHWfpNCPXJlySOoFekI94V9c91wz1sw-tDciIoIlo8,3915
144
+ maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py,sha256=f6d0ERRRp16Py3FBhHAPqlN17WxNOenecmM5dP2KjCo,5218
145
+ maxframe/dataframe/accessors/struct_/accessor.py,sha256=ZWc_-3B-v199pIFPN77UfrpTIZOmiAWYnCF93Tg1CeQ,1317
146
+ maxframe/dataframe/accessors/struct_/field.py,sha256=bc5D3BaAGCnO_AmT4y0dBPO-qrlu97nvveP_sPYr03Q,3757
147
+ maxframe/dataframe/accessors/struct_/__init__.py,sha256=Pld_npCYhJBraSCrLxCwTvCz5517rD2vHvWizEXqII4,1210
148
+ maxframe/dataframe/accessors/struct_/core.py,sha256=qsLt-9lNexGG3c4QiR0F5t4hrTT3IWgsdH_mcnzw6OQ,1696
149
+ maxframe/dataframe/accessors/struct_/dtypes.py,sha256=vMX18X2_jj10lb4TvINmSyb17iymGKThnbQ6DudWIDQ,1697
150
+ maxframe/dataframe/accessors/struct_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
151
+ maxframe/dataframe/accessors/struct_/tests/test_struct_accessor.py,sha256=2m25glcn7DqwK6P2u_LzBxhbMNqNFvopXWAGMW5v3bQ,2737
129
152
  maxframe/dataframe/accessors/plotting/__init__.py,sha256=BvuibZ5Wj6WcFvSrgDltgXQhRPdQksBwxlBdrL9liMg,1388
130
153
  maxframe/dataframe/accessors/plotting/core.py,sha256=h_O3Jsalv55yLrPLzaLrNEHNP8pb8M95H5Gq9twzuTg,2235
131
154
  maxframe/dataframe/accessors/plotting/tests/test_plotting_accessor.py,sha256=o_yRgHBLWrspYWd7pS-LUR6Vv2dKzLQbBca21EZyoWg,4123
132
155
  maxframe/dataframe/accessors/plotting/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
133
156
  maxframe/dataframe/accessors/datetime_/accessor.py,sha256=ai1Hqn8WCU30n7KGGMnxIXuehJ1yU7tia_I4pW1hjH0,2222
134
- maxframe/dataframe/accessors/datetime_/__init__.py,sha256=k22-FodYSO_hU8mGiiVFpA3PWEz8g4IIg1Cyaq3zYNs,1084
157
+ maxframe/dataframe/accessors/datetime_/__init__.py,sha256=MqUNHuuULHtJqfZT-f7O0mG-V3S6Gc2w8Kwr3mw88wM,1196
135
158
  maxframe/dataframe/accessors/datetime_/core.py,sha256=nTdwF4B4Nkh7mNmOAd36jR4qCesTyTyhFNaheqnqUB8,2604
136
159
  maxframe/dataframe/accessors/datetime_/tests/test_datetime_accessor.py,sha256=E5qo7BfyUqWVzLBNx3a7fA119QMTQKBhyh-J-Cm5Eo0,1395
137
160
  maxframe/dataframe/accessors/datetime_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
@@ -139,86 +162,102 @@ maxframe/dataframe/tseries/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn
139
162
  maxframe/dataframe/tseries/to_datetime.py,sha256=rvVcXBqbc7Xf7TlTUEhTNIqw9k3J-BQhvVVt5MVK8I0,11426
140
163
  maxframe/dataframe/tseries/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
141
164
  maxframe/dataframe/tseries/tests/test_tseries.py,sha256=ECx22AkI-TFT-293amPHdR6vydTgSOM7wNFa0_f5G0o,989
142
- maxframe/dataframe/tests/test_utils.py,sha256=3Qf3yVPDgUnSLOZACmgnEgaxfvqmn90LhTnY6C4phgQ,3012
165
+ maxframe/dataframe/tests/test_utils.py,sha256=5a8vcIxYo96KJBe5_QhrvRklEy1LIBKgniePBodpABk,5268
166
+ maxframe/dataframe/tests/test_typing.py,sha256=p4vPW9CuJPNSfiWFW3twTsbGNiuwe1KAbhdA6VzVbh0,3291
143
167
  maxframe/dataframe/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
144
168
  maxframe/dataframe/tests/test_initializer.py,sha256=9tyTBnNBHSuD89N7odLa83CmklK9EZKbWbTewijlD_M,2000
145
169
  maxframe/dataframe/ufunc/ufunc.py,sha256=TFD5VnP-yUPwbo5oDwegG2OTPlfcNUs9grmoTLwOIFI,1652
146
170
  maxframe/dataframe/ufunc/__init__.py,sha256=GM5LuPDJD8WHK_-sPPBC6cMyEuTyuDWY2JUnhq3VJ4k,889
147
171
  maxframe/dataframe/ufunc/tensor.py,sha256=iBUpqvpgYuooh_Iv8iUN9haQ_bxo6sD5LVdrHuaNv0A,1618
148
- maxframe/dataframe/missing/dropna.py,sha256=ODqgHGhF6DFbkGkMFtpmX48SEWEiRK-oZl2PtLNDDXg,8545
149
- maxframe/dataframe/missing/fillna.py,sha256=dNX7Jwb705kGFaU3hkoJO6X2NWuRvLKHlRX6hUa7vMY,9158
150
- maxframe/dataframe/missing/checkna.py,sha256=g6IOUnRGJOf7T-i7MmS5ibXjzI2gdfspWDtqEBrM5FE,6890
172
+ maxframe/dataframe/missing/dropna.py,sha256=3Wk48ik3iK4dQjvwoaa-zKkBZc7WhTJZplOb4t60xhA,8720
173
+ maxframe/dataframe/missing/fillna.py,sha256=si4fq6nZISfvX9IRLASgnI0clrAJSfSc_qqpcJItjaI,9174
174
+ maxframe/dataframe/missing/checkna.py,sha256=menzDZ0Pt5yMLSvjMvLgWZOq_Z4dgQNBruNQY9XdOiQ,7239
151
175
  maxframe/dataframe/missing/__init__.py,sha256=wETXRj4oWTruI67Vq_EKlUjGrOo7bvFFBM2Qxf2dIG4,1813
152
- maxframe/dataframe/missing/replace.py,sha256=yop4G6kG4AlWLiLXLE4Qmu_VJMzObSeF-HOInImgf6U,13450
176
+ maxframe/dataframe/missing/replace.py,sha256=RbqYR1ZWi5nzGMR5E2BUcRVO3QXBC2rO8sWUX6be-Uk,13602
153
177
  maxframe/dataframe/missing/tests/test_missing.py,sha256=8pIE9U6TeeWjPYarouMhpMwKNTsM0O1SLnglr-WfFDM,3127
154
178
  maxframe/dataframe/missing/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
155
179
  maxframe/dataframe/extensions/accessor.py,sha256=QkHJq6n_qayJDM5qZalLVFVZgwCcdjMBJt-V5a6UtJs,1031
156
180
  maxframe/dataframe/extensions/flatjson.py,sha256=GvHU07tIt91k5m5Vpn-P1pd69Nz0lXgvQP-RGB79o7g,4412
157
- maxframe/dataframe/extensions/apply_chunk.py,sha256=V9153ail0HL7M-vm1vMMDmVYAUmZFzgDyfP_N0sagU4,23500
158
- maxframe/dataframe/extensions/__init__.py,sha256=TLCGoy4JUO0UGuBFGSyYIigUh137rtgyMZ7jy7stqb0,1943
181
+ maxframe/dataframe/extensions/apply_chunk.py,sha256=PO9-XyvmecpEONO8nFTPbV_kiNkXEHU8TjV9ppJAfEE,24355
182
+ maxframe/dataframe/extensions/__init__.py,sha256=JllDw5KJAlgg-v2FHdTfeSpjJRcpRy0hA1RhxipA5NY,2743
183
+ maxframe/dataframe/extensions/collect_kv.py,sha256=ogM4H1znh2fXYGN7VSzQVy6cLUajf2rnK3JXg9RxnRw,4234
184
+ maxframe/dataframe/extensions/map_reduce.py,sha256=CZmEJZG_DphtCC16gThGiNorXl_XTqks_quf5_4cczg,8943
159
185
  maxframe/dataframe/extensions/reshuffle.py,sha256=Ig8XtZZZa4lwl6RoQfQMr_U2dAjTCWXP8sZtlviUUQY,2635
186
+ maxframe/dataframe/extensions/extract_kv.py,sha256=_lvI92eZXHsEaPkPtw45cACMTYXvmiCPGTd6DTl8iAw,6263
160
187
  maxframe/dataframe/extensions/flatmap.py,sha256=xnrqkbYLG6CqkQ35IFxZtRP-DhIwXJXaHdvPwCPNgkI,10518
161
- maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=_NF_2sKBbbKyce2G7_HIQs7EsLRaQeYVg-PXxrV4pkM,5848
162
- maxframe/dataframe/extensions/tests/test_extensions.py,sha256=zEt9CfM9se4kkgLHIgnXSPZ43VmU2ZbA59iTL86boZc,4779
188
+ maxframe/dataframe/extensions/rebalance.py,sha256=bqlfQjCpt0Q8hlAeSUHY2dW9nR4TDpgoDAYDO3sknYE,2208
189
+ maxframe/dataframe/extensions/cartesian_chunk.py,sha256=MG_ytgk2w7abHdFiQFxYkxabDlUbr57WFIQifEGHdMw,5288
190
+ maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=p46wXHF3MWk58ZHH4W1lQxYHM-PBZ2mCh4TxF9G7zJ4,6110
191
+ maxframe/dataframe/extensions/tests/test_map_reduce.py,sha256=oiXzxqo8YS9Y8yRXeJAMhJhILX_Jm8E5KwpYHR0LQxI,4362
192
+ maxframe/dataframe/extensions/tests/test_extensions.py,sha256=mTZKTQzMz6i5w_wqZ8R3G2zAuMOdhf9Rh9G6hKyW3LQ,6435
163
193
  maxframe/dataframe/extensions/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
164
- maxframe/dataframe/groupby/aggregation.py,sha256=992fSehwNbFOi-7Tz4EVHP9blJWtNF6sDkm4SMM0NRQ,13417
165
- maxframe/dataframe/groupby/fill.py,sha256=LLyDAhiETT7Epccs5vCFUGmJdvwMGdU--Dq5VbkHtis,4885
166
- maxframe/dataframe/groupby/apply_chunk.py,sha256=DNig32JPwEf9_9xLSx2jCfTKLltb7XY4uc1yMIEw1dw,13871
167
- maxframe/dataframe/groupby/cum.py,sha256=ITaWHRngx_QtiWY--agEHUdyjY-IdYaQLkF7tOolUEc,3683
168
- maxframe/dataframe/groupby/__init__.py,sha256=FcNLgvg7JLvi5mKWPG_CA_il0s4oudDKL_1nmZRF9FY,3815
169
- maxframe/dataframe/groupby/getitem.py,sha256=V7CyoGOSdwUFZ39e8kXEqNhyEOWkMyTI00yFBq0xA2Q,3415
170
- maxframe/dataframe/groupby/core.py,sha256=bQR8IHpxPAz70dM6yy1WCYTW92w5ejmYru_R9lkFrxg,8479
194
+ maxframe/dataframe/groupby/aggregation.py,sha256=tuwGGZucs61hu_HaWK5XfzHBjgkWs7KDo_vsIX6fyNg,14818
195
+ maxframe/dataframe/groupby/fill.py,sha256=gcGRF00aCeALmDowE5RsJ1o1o_Qhd2fgvcCVmr-xi4g,4901
196
+ maxframe/dataframe/groupby/apply_chunk.py,sha256=8AqLwxoVt2qnTqNdY2T6Xli1QqjnaDGtMZemYyFd3ac,14444
197
+ maxframe/dataframe/groupby/cum.py,sha256=jJ5_iGRxGi5XaY_gYLZrCZ9tQt6ai6dVYDhf7ANv6PI,3309
198
+ maxframe/dataframe/groupby/__init__.py,sha256=WKMAMZohkSkR8yuqyWyR8yAm9e5abl_YVP7LkLlY35E,4157
199
+ maxframe/dataframe/groupby/getitem.py,sha256=4wEMWIPUt2mlFhja13txdRe_oBZqPnNLpj8dh0mN5ps,3643
200
+ maxframe/dataframe/groupby/core.py,sha256=7dYetcs7CGc3Fc38HWNhGMqYjfezooIGJUEzduCCfHs,11565
201
+ maxframe/dataframe/groupby/rolling.py,sha256=sRh07osepstKLxgUlr27likPGsl8wAmjR6dpQRSuFwk,6727
171
202
  maxframe/dataframe/groupby/extensions.py,sha256=c9pfAtHuEDFm5in6QTt5fQIdlqXw5ihfl65GeanKyZU,915
203
+ maxframe/dataframe/groupby/shift.py,sha256=qIW_p1_Lp-qTqROKfkQM908H1sGy6t1nff9ltrr72Ks,3115
172
204
  maxframe/dataframe/groupby/transform.py,sha256=3_ozy344yoeTZNDU-Fp_W3ZRRbdCNi5Lpyc98joeULY,8573
173
- maxframe/dataframe/groupby/head.py,sha256=o5B_sgQDKjFxVlKB02tuG2hdXVhacCFbi1CuRdVXD3Q,3266
205
+ maxframe/dataframe/groupby/head.py,sha256=T-Tc9cQT2LgLiBEzuCAsvU9JWgBOMtHc81pa2OrV8R8,3665
174
206
  maxframe/dataframe/groupby/sample.py,sha256=0sI9MSn274iHnmR9zs1g1g7DPsjxvF6FZ2S4XKhcaro,7007
175
- maxframe/dataframe/groupby/apply.py,sha256=T64zq-KtS-s9DS8Cb8ZA28_sN9FgrZWsHM6RwHCl9Zw,8461
207
+ maxframe/dataframe/groupby/rank.py,sha256=CMh3533cPkzw9Wl7hxoCyq6_GdWQ_hjW0_F96DVEbcY,5031
208
+ maxframe/dataframe/groupby/expanding.py,sha256=n_5xOFnQRK7ehmpNHikCFGMmjQRTAo70R38fkXj44lI,6892
209
+ maxframe/dataframe/groupby/apply.py,sha256=0LjJSdZ3sAzomu4zmcQIKF2JCkjP0gyhDbuwibbI1k8,8461
176
210
  maxframe/dataframe/groupby/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
177
- maxframe/dataframe/groupby/tests/test_groupby.py,sha256=KhjhpjdYbCPH7r2q9DcdUGeRn_BBnNNNWz3Uj-FvhLY,12358
178
- maxframe/dataframe/datastore/__init__.py,sha256=f__5rpYJSz1S0FzyJq1oE0bTXmAa4Azxa6gAFrwD7MY,784
211
+ maxframe/dataframe/groupby/tests/test_groupby.py,sha256=OuaLNMIb1dlKgC2EMfv62z9-NTUxAKpkF4l1S2INd2M,12150
212
+ maxframe/dataframe/datastore/__init__.py,sha256=hzvbkSzs86vR6wGoYGWJfKW4NgawL8k2tlyArZpHnHg,902
179
213
  maxframe/dataframe/datastore/core.py,sha256=USIY-JV6gmGI7DFl5F_YptytNxnHFPErsDctzAN2Ivw,743
180
- maxframe/dataframe/datastore/to_csv.py,sha256=fUyAkEN8imZzCEgBgYO-CCOBi9penk5i-2hB7YlurfU,7859
181
- maxframe/dataframe/datastore/to_odps.py,sha256=K-XEI0WazY0ySfdXnBA29blqf1F6Eug44esOyMcK8bk,8371
214
+ maxframe/dataframe/datastore/to_csv.py,sha256=8lSXyjqlUxjWCX5iD3Y163N9kyRLjSi6-d2AhA-6YYE,7910
215
+ maxframe/dataframe/datastore/to_odps.py,sha256=z92T1QSXf-9Z-xP84zm9yORAUrFk9RI6ft8iji9mzQ0,9579
182
216
  maxframe/dataframe/datastore/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
183
217
  maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=ftaUeXpGr_daZOn9dtWq0QEFiLg9i3kGfEo7F2Z3ss4,2989
184
218
  maxframe/dataframe/fetch/__init__.py,sha256=Mlwm89_WXweFj-zQNbIEnnIZD8vHh7z5A2WPXxN7KE4,653
185
219
  maxframe/dataframe/fetch/core.py,sha256=GP5E5tCodXgyPOj1CNX4TcaVJUG7VwtI3-TE8S84Qu4,3744
186
- maxframe/dataframe/reduction/max.py,sha256=M6y3jKLd8ecJTc3LNb49tr74LaGPs6MCpuPWQJ-qWgU,1660
187
- maxframe/dataframe/reduction/nunique.py,sha256=qaovc5DAxZFfGXdEaJy0uNHX69p2RnlmaUi7gmQbd54,3467
188
- maxframe/dataframe/reduction/cummax.py,sha256=Odo-Ahex2Ey4cwO6_uJEuafbOovnkzZOw9pmyXs4i9A,1013
189
- maxframe/dataframe/reduction/aggregation.py,sha256=VwihLfTCxWz7chpHGHvZ8ZJcKjSYBjluK0CpMVf0EmM,16827
190
- maxframe/dataframe/reduction/skew.py,sha256=n4zYukXUYv1UFHGJFs1m2oToBKKnZ7ilhHBrRK1dHuQ,2538
191
- maxframe/dataframe/reduction/custom_reduction.py,sha256=QjPVQ_8hdXjyWmOgeVlxsH8oir2zC_fa5NWK5wPtkik,1435
192
- maxframe/dataframe/reduction/unique.py,sha256=fFV4qh4Ulgm4KXelrsGQuuHa22_YARiG-AkSjpPgNa0,4572
220
+ maxframe/dataframe/reduction/max.py,sha256=QSatmRu5cjCDxKR0ZChFrETUQSF6e_fOlN-Z172YpxQ,1644
221
+ maxframe/dataframe/reduction/nunique.py,sha256=7lAtT6jDthibKg_nO623AMv3tiVfhmhKNjM9MbFLRmM,3652
222
+ maxframe/dataframe/reduction/cummax.py,sha256=OYY6BZeNOcdNq68A9ZpD4zAdmuPhvs8iMs1kdsQTctA,997
223
+ maxframe/dataframe/reduction/aggregation.py,sha256=qlEWtkZC8bs175mUiGgan0GdP6moOhpLIXniLFHp8AM,17765
224
+ maxframe/dataframe/reduction/skew.py,sha256=HWdZe6GRUYaAwKH0pUomx68N5NYKdfwTt8IVe-8UFT4,2705
225
+ maxframe/dataframe/reduction/custom_reduction.py,sha256=tZ-go3T-NgWMGTNg3bx60sU9R2lRd8iZTyl2Mv5LoTA,1419
226
+ maxframe/dataframe/reduction/idxmax.py,sha256=fEZbsp3i_jdFimtIm5mzYBts2KCwggMWcIo5j35vp0Q,5318
227
+ maxframe/dataframe/reduction/unique.py,sha256=fgVKAqMawXVs6-xjbpsXk9bGyXrYKPp5Zg1SCHHj3cM,4901
193
228
  maxframe/dataframe/reduction/std.py,sha256=GmIp-lXVxZGFO2jZVcTmWwHz7rZfhhm2ONKTqZfU8LA,1355
194
- maxframe/dataframe/reduction/str_concat.py,sha256=Wzuh57my-QOIqYMlnGn4i0mgH13dv4eWM53wEd11Iog,1657
195
- maxframe/dataframe/reduction/__init__.py,sha256=6Xh-aQQmrGsPnsm3f-7chhsbMKTV1kWV9Y42ZJ6BTic,4335
196
- maxframe/dataframe/reduction/core.py,sha256=F6UOWk3QGjPcWQLhqESuXGjNQGz_Eixmr_G5cZ5n7Hw,31026
197
- maxframe/dataframe/reduction/all.py,sha256=Amnoyro0zLqtk5ytuq0ntAOu7UqGHfhc8n3EONXmyUo,1966
198
- maxframe/dataframe/reduction/cummin.py,sha256=dysmKMEMF_BiABSE8DNYzdWfzPNsHYPl_U8WMBbztow,1013
199
- maxframe/dataframe/reduction/min.py,sha256=79EW7-KqVut9QULQ4l5UXzbCeYlrXtvYdlDzM328eFc,1660
200
- maxframe/dataframe/reduction/mean.py,sha256=5cvduC-QtLJs-acdpz716dI0Hg1WblDzBqDPbSB13dw,1612
201
- maxframe/dataframe/reduction/var.py,sha256=ZdC_y8nG0LSFueMfDO4-4MBQTNG8y4iHnRBamnuRBPk,2008
202
- maxframe/dataframe/reduction/median.py,sha256=HALfRFoAe6Fo9LUGbhgAF0FHFYRCNgV3gh7Ml7qmhq4,1593
203
- maxframe/dataframe/reduction/kurtosis.py,sha256=S1M_IP99nsabMqRRmG4tDUED5ZvRopCxljU0OL33NyI,2840
204
- maxframe/dataframe/reduction/sum.py,sha256=_nZentdtTwY475Wk-VGpxuHQ3zMGhDhrP9RTAXn6Rro,2049
205
- maxframe/dataframe/reduction/prod.py,sha256=nn-Lmm9f8OTshX7BQCgoBe-Qr2ytjE93L3rvLswofEk,2049
206
- maxframe/dataframe/reduction/cumsum.py,sha256=UO9CFa5PCcZ8zmCzJLMWhYI2Y79Gut3NtoVJArw6JTA,1013
207
- maxframe/dataframe/reduction/any.py,sha256=vVjm9uEcWK0aIdsXGPuJKRanXoz9GqDS7BfMQWRQmdQ,1970
208
- maxframe/dataframe/reduction/sem.py,sha256=un4SZsFZ83HX-H32XvGyosfZNfAth1C787JDskX5Zm8,1863
209
- maxframe/dataframe/reduction/cumprod.py,sha256=RZd7znJrSiZ9ptQpWbrDvMivRhx6vgFezS7VoeQdX0g,1018
210
- maxframe/dataframe/reduction/count.py,sha256=m0c0j3dMsLzVjeSB_ibo4Qwa35iP6b0hZahhX2qiEO4,1741
211
- maxframe/dataframe/reduction/reduction_size.py,sha256=SAprwQF8dJ3ZAZkLcHvsPsLiTDHmMnFtnVVy8Zn1UYo,1120
229
+ maxframe/dataframe/reduction/str_concat.py,sha256=5r-VkCN-48BmVARG2BBlYfEG4JR0b3w0u_JMrvvopg0,1797
230
+ maxframe/dataframe/reduction/__init__.py,sha256=9A6kqvKbL99nw8sZrsdjuPYOLrl9G5xqWNEfeICc5UI,4946
231
+ maxframe/dataframe/reduction/argmax.py,sha256=quqx7-sl5auFFXBxjuLhxkTlfYSdLSDubH4lhPI94zg,3188
232
+ maxframe/dataframe/reduction/core.py,sha256=itiJCh8RX773haGug2aYgo3IdIhHmXfpGQ5EKYBdic4,32760
233
+ maxframe/dataframe/reduction/all.py,sha256=1HCk4rVHk02npNnGHiXRPqfr-0DbB_vLpdvoKOAXdN0,1950
234
+ maxframe/dataframe/reduction/cov.py,sha256=e5O_1rmWo-rDoY95pw4KhD2v1P2lBwJL3Olb0fysjao,6210
235
+ maxframe/dataframe/reduction/cummin.py,sha256=clx698Urwo6iVOl3vEGwnyXtPlKghHUgk85BLt2BFpE,997
236
+ maxframe/dataframe/reduction/min.py,sha256=KKdOU5OW0v19M26jZB1wTeEqDf9eDeC-OMdHEHjrvHU,1644
237
+ maxframe/dataframe/reduction/mean.py,sha256=YUb3zpA8mP73GuVJBI7Jn7jeYL7dGWmbSUTcvmnqFLc,1779
238
+ maxframe/dataframe/reduction/var.py,sha256=tqwO1qqlQrgcsGOlGW1NpQI4phTBVUh6OxJbzy2Zi8c,2228
239
+ maxframe/dataframe/reduction/median.py,sha256=G-ssX-tyLo4iVZbAv0SUXRzBt0DKQT8znkwavkTtvyE,1577
240
+ maxframe/dataframe/reduction/kurtosis.py,sha256=d4yqTm0s93y7EHsM0W4EkUIiD80Ap7FpP_iQUS7P2mY,3070
241
+ maxframe/dataframe/reduction/sum.py,sha256=UpR4wKuX5eGFeYBR_gMlv5lGwrBvUs1DETpqjEGUzVo,2261
242
+ maxframe/dataframe/reduction/prod.py,sha256=ftUGCPdwEN7hrz9w2OfvbZSLkxR7FNF8XKmnkvBYxvM,2273
243
+ maxframe/dataframe/reduction/cumsum.py,sha256=T3aiiTh7u5_70GV3D1Snc2QJxSF_v_nXU04sSiRuQFw,997
244
+ maxframe/dataframe/reduction/any.py,sha256=xiSRZzsdf6atz41sc8H4KJLSYxVNJIIy6qdrsCB0XS8,1954
245
+ maxframe/dataframe/reduction/idxmin.py,sha256=_RsFuDXd8BE2N48FDSkzojntWpF_EgAF_DWmYI5u_hw,5321
246
+ maxframe/dataframe/reduction/sem.py,sha256=URGLYsGcPfske81WxK3_Yp6rAKw4Oux9QWKn6GOqN9c,2083
247
+ maxframe/dataframe/reduction/cumprod.py,sha256=mDi8lGFg_jcb1xMJZ-SSdrWFTVLJqGgd95jx8AXvgFQ,1002
248
+ maxframe/dataframe/reduction/count.py,sha256=8prfu-Er6a1I5OzHGW5aflU-LVPmQJRClHdAbUOLXlw,1983
249
+ maxframe/dataframe/reduction/reduction_size.py,sha256=w07CSrdkmbE8J3h5l_HEiwoKmML90EKlAyQTAopr_yY,1104
250
+ maxframe/dataframe/reduction/argmin.py,sha256=Fx1kSzEHgY6dAuKnuF_W7MGd9CWCinFRcyGQ3GHfEzI,3188
212
251
  maxframe/dataframe/reduction/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
213
252
  maxframe/dataframe/reduction/tests/test_reduction.py,sha256=31V29OWPi1Ia52b3BRl9VpvOp08k5xYFqeIJJBzpVCc,18721
214
- maxframe/dataframe/window/aggregation.py,sha256=lui1PvodeuPpOzb6VBSHvy_TnhEK-GMYiirdJG8g3Os,3794
215
- maxframe/dataframe/window/ewm.py,sha256=5avuJh8WlvjvDe85AE4DYQSQAIYu1r04Ra0hBB2yKjs,7789
253
+ maxframe/dataframe/window/aggregation.py,sha256=qBN9jQ40bdvQSuqICohv1wVZ1br0y-o4WpIKjUiEqu4,3894
254
+ maxframe/dataframe/window/ewm.py,sha256=vrWPW_MNdDgl2BONzy5LubwyVxylIiAm0UWJkdzflJE,7752
216
255
  maxframe/dataframe/window/__init__.py,sha256=kRKsdMgSYsFZeDQV_sXy2yyVdALKsYLK5NM3zjnx0uM,910
217
- maxframe/dataframe/window/core.py,sha256=PBlauTddI7l1c78Ft5QhvQHzw3da5f5LlSt3LZlKkTU,2205
218
- maxframe/dataframe/window/rolling.py,sha256=T5FOrr01gQ8NmhGawnjKOEESVJnX9lnQlL_ygOB4xJ4,12158
219
- maxframe/dataframe/window/expanding.py,sha256=hQha2jrVGNLaduB1ZJkvdi53_aoMCVXSzAjDfrJaDr8,3918
220
- maxframe/dataframe/window/tests/test_expanding.py,sha256=iGdKMbMIGbeES-XFmywMisfrSpi21g49UvCU9DoNw4w,1916
221
- maxframe/dataframe/window/tests/test_rolling.py,sha256=UA5osZ_vo2NRo9_E4rIehoYKZYJGPVoei8DcJQtaXkQ,1714
256
+ maxframe/dataframe/window/core.py,sha256=FoK9uc0pL-CPl2rMgPenqSAhk6OerBPNkcbvp-fT4Ak,2878
257
+ maxframe/dataframe/window/rolling.py,sha256=ZKYIeBXWQOo41hXjOfNou-YjhEOR89CN9FSVYeS0QsI,12811
258
+ maxframe/dataframe/window/expanding.py,sha256=VM_pE2ML7ixbD7CbojfhRj40AdQkjXPNOuGDQYkU5BA,4088
259
+ maxframe/dataframe/window/tests/test_expanding.py,sha256=q0Be3zWAi7MOhThSCsziGJShZJymjx0EtZj9dr5hAXw,1779
260
+ maxframe/dataframe/window/tests/test_rolling.py,sha256=JolsEeXhTa233DEB7wAwyfztVc3LeV5fbzwVElM0Xdg,1745
222
261
  maxframe/dataframe/window/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
223
262
  maxframe/dataframe/window/tests/test_ewm.py,sha256=-T3TnHMnTtQflSyvCIvNw5Sc97QkpbMAib6fDc0lNiY,2060
224
263
  maxframe/dataframe/arithmetic/arctan.py,sha256=wcm495plAIICdazKVlicsr0609uyyqGM6ulSRlX3YtA,930
@@ -238,10 +277,9 @@ maxframe/dataframe/arithmetic/degrees.py,sha256=caKuVKu1ukyWOW5pR4ifZweKxAYi71KT
238
277
  maxframe/dataframe/arithmetic/cos.py,sha256=O4P-XDbyADP_E2Dz7flNaPLJs6HmyK6NKH1hVVFVnz0,915
239
278
  maxframe/dataframe/arithmetic/tan.py,sha256=YYcDjP4NqXvUGYafUsVH4bByg6rBk7wNtKlW_ZXzd30,915
240
279
  maxframe/dataframe/arithmetic/abs.py,sha256=IK6Zxy1w9C4KOCgPl2Zx2MHsaUTTkpVublbK263bWZc,983
241
- maxframe/dataframe/arithmetic/__init__.py,sha256=LUk6ISdDemrkg9lq342zh9g_vjep8W_Wof1ZQyAtaTg,12478
280
+ maxframe/dataframe/arithmetic/__init__.py,sha256=keKDvgvYPQ7o7XZqkkt--MhUVs-i0CSdiQrdT8ZLUaY,12820
242
281
  maxframe/dataframe/arithmetic/core.py,sha256=OVt7T5UtcZpKUAjSLj6t9La4gdA-Po6SLdSoI4IInSA,14497
243
282
  maxframe/dataframe/arithmetic/floor.py,sha256=aomnYTbh4Fs8CtY82b6OgfGXj0xCg2j6kiAK-rlie48,925
244
- maxframe/dataframe/arithmetic/around.py,sha256=bNjon55vUgBIOy2OBMsPJcETNv14Hdn3eNTEp_fqSD0,3823
245
283
  maxframe/dataframe/arithmetic/is_ufuncs.py,sha256=7DO49HO9Ha347Pay7DHIgLDx96gn6h5rjuULiOSVwtY,1736
246
284
  maxframe/dataframe/arithmetic/ceil.py,sha256=2baxYINaqkKgbb6UhJ4-XEz-O0H02liJ2I_PyGxohDY,920
247
285
  maxframe/dataframe/arithmetic/bitwise_or.py,sha256=FvGNn64GtiOhQbn3fACkoiLIlhSTvnVWeWaqMtRzE2U,1546
@@ -249,12 +287,15 @@ maxframe/dataframe/arithmetic/bitwise_and.py,sha256=7gJstDeVKIrw-oyGerrXz_VbL3t4
249
287
  maxframe/dataframe/arithmetic/log10.py,sha256=1S65Ux7RorVduQbViKYA37hixWam5Y2CJ6zt6OIF4fY,925
250
288
  maxframe/dataframe/arithmetic/docstring.py,sha256=maE6SmYaTCLmp3BWCOg70hkS3x3GSYa3V3P-7ZxzAhY,11691
251
289
  maxframe/dataframe/arithmetic/truediv.py,sha256=ovrp5MI3jAsdbWuynU6ZrlRL9_HVbf4r9vWjvSbHSro,1808
290
+ maxframe/dataframe/arithmetic/round.py,sha256=gtLxSOVFu8EqdC4_eO8AtABTUq1AilTKfqih28WXMBo,3886
252
291
  maxframe/dataframe/arithmetic/exp2.py,sha256=QVzw4bJgh24tXm6q-PaNJm22CWZdAkXl19rBHXTCgRI,920
253
292
  maxframe/dataframe/arithmetic/expm1.py,sha256=UlN5R1uk2aL65vMOK_9sh_HljmgnVyUs-RdslRhl3RI,925
293
+ maxframe/dataframe/arithmetic/between.py,sha256=SX1kvNkHzplKnpzczTqYtGdB6bXsI5Zm8oOuEcokYjk,3004
254
294
  maxframe/dataframe/arithmetic/arcsin.py,sha256=1_x_XEwX6yvpd629WsgGgfiurueKqoj99b4ahXoLt18,930
255
295
  maxframe/dataframe/arithmetic/floordiv.py,sha256=ARgAdYuFMAHV-OX13OW_NpbL2OiiJ6ZFXPpHW2kSs6I,1827
256
296
  maxframe/dataframe/arithmetic/bitwise_xor.py,sha256=vgep0FL1ge1npbhLSeu65gKZJm27WUkfzMEEvn34sBs,1426
257
297
  maxframe/dataframe/arithmetic/invert.py,sha256=Dj9pzPSVtd5qxpTFQcJjO5zZTLOJdOe2BPvfmoIx2eA,985
298
+ maxframe/dataframe/arithmetic/dot.py,sha256=-K4kRmXbg5x1jb9jXiWnS57-Frkioh28NeJNoF006Ic,7115
258
299
  maxframe/dataframe/arithmetic/greater.py,sha256=5lxWrVGp-wcmm3xFbiWFsVwKGHUnpAlWLRnMvd6d-SI,1547
259
300
  maxframe/dataframe/arithmetic/log2.py,sha256=Hr5FIsBTxtzCxlqt1cwkMujwTTJ5seP6YYSELg3QyoQ,920
260
301
  maxframe/dataframe/arithmetic/less.py,sha256=NBU7UdXRF1a8IHNOgqNyaiTJRGUSc9Tyrm6-wyr5pN0,1518
@@ -271,52 +312,76 @@ maxframe/dataframe/arithmetic/radians.py,sha256=rdTJ0PUJfJFQDv1iclz2i3nAj9DNTdUJ
271
312
  maxframe/dataframe/arithmetic/sin.py,sha256=8ztWpvcfYPXLGUDQxNFFj8OTI-S2T8g_Wh1DC5Z0-XU,915
272
313
  maxframe/dataframe/arithmetic/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
273
314
  maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=f73zN23-WDeCflMyxJ12zqBjxeq6hErEoxOXV4S5Nbg,25396
274
- maxframe/dataframe/indexing/reset_index.py,sha256=5oxutzt7-pPAahK6EGkFkhjhoP_gFFVjJe1_i9IU9Xc,13076
275
- maxframe/dataframe/indexing/iat.py,sha256=2Oxgg16ND8Tbi5tVKu_rqmO8PYMlq1TjBc2fq9umDEs,1127
276
- maxframe/dataframe/indexing/loc.py,sha256=n51haFUtqKGxcDf-hhPWYOldabQRj1ykOEObzhzY_Z8,15050
315
+ maxframe/dataframe/indexing/reset_index.py,sha256=VRsYYcPMOSgP6zHTAZdG8D-8jWiJQS8LiyHItZmVSfY,14125
316
+ maxframe/dataframe/indexing/iat.py,sha256=jIZlKdQouqBcjGA-rExDdDsfmZw6ljnaVLBEKprzB0I,2244
317
+ maxframe/dataframe/indexing/truncate.py,sha256=6-znzdeCTd4jzYWTLxXsEAK9k5QZjTkUXyEY9XIOWCc,4255
318
+ maxframe/dataframe/indexing/loc.py,sha256=O03xFGO70me-3Q2kbm7zgwMMIJnx7O3pPMmFKrCvDeY,23935
277
319
  maxframe/dataframe/indexing/align.py,sha256=Ubnckcpe99ihPGeEuN6bORE7d_jhIEJv46b4LsgvTwU,12159
278
- maxframe/dataframe/indexing/rename.py,sha256=6AVBDCru7HX1cwuvxWNvVu5h1BaNYDeJBP6AiavpBk0,12892
279
- maxframe/dataframe/indexing/setitem.py,sha256=MNaDihQo9q6nwRaBRboDXeOoDVtvX7Sd6_Tw8UcfLAY,5095
280
- maxframe/dataframe/indexing/where.py,sha256=SkPf4-wS7FvdB0jqyVDXTC4cEeFNo_pCZGxoz-9sB_U,8652
281
- maxframe/dataframe/indexing/iloc.py,sha256=Lfc_EX1iiYtlfOcyVWPHy1xdSq8zE5GV5iVOlAVq0B8,17669
282
- maxframe/dataframe/indexing/__init__.py,sha256=y15QNLqU9xn_bl4W2F-JqlaB1AM_bdILkhNi-IYA16Y,3213
320
+ maxframe/dataframe/indexing/rename.py,sha256=GAimAcucskBIGS4GIn48pw1lWzNaCOiFAW0Rl2Cno6w,13113
321
+ maxframe/dataframe/indexing/setitem.py,sha256=D_-O8gRqkNQ4ioT7PpFUweqY2LtQkXW9Bs4vYfmP5Tc,5165
322
+ maxframe/dataframe/indexing/droplevel.py,sha256=qVsFjz6IVZL17N-euluOkSTyzRMCdNiHPuQJvysr8ag,6044
323
+ maxframe/dataframe/indexing/where.py,sha256=adlCOVeCL1yIdKHc1mu7mz6tsZIZbuM3NftsHBG8YIg,8203
324
+ maxframe/dataframe/indexing/iloc.py,sha256=EB12L6vqJvYZmkdS8ErlDxxhXnl80FWfislu0Ki-QHs,21639
325
+ maxframe/dataframe/indexing/xs.py,sha256=YpBofFJPyIotvan0PBLEZIfAY3-bIZXpgPOJF3Nfjtw,4806
326
+ maxframe/dataframe/indexing/__init__.py,sha256=Kbrf7U83uhwUOUGBE_kvP3GyNggVTB0_s-kc4WQhZ9Q,4128
283
327
  maxframe/dataframe/indexing/getitem.py,sha256=6LRc68w1GML1-K93TinLLwvA7QsujJuQtRunnLOEDMQ,7837
284
328
  maxframe/dataframe/indexing/set_index.py,sha256=omR_cfnV47LFwTev-MyfyC10CmmteU5nzjwxD_PuVy0,4195
285
329
  maxframe/dataframe/indexing/at.py,sha256=m1Zl8H4Fit4IaIU5v3gtho2_0jvLog3jn9iNooAP_m0,2217
286
- maxframe/dataframe/indexing/rename_axis.py,sha256=iE783in_plJuQPLPTCBuIePX-We02Mze7r0YGLHtB04,6578
330
+ maxframe/dataframe/indexing/get_level_values.py,sha256=RpwDYloY14jTRLdhwZOswJQ7vnbCc6vSZL2yywCRkRY,2488
331
+ maxframe/dataframe/indexing/rename_axis.py,sha256=V92L8Za2j9uGeiVvhKcVW4WGVd8JOVz4r1GD0ErzGIQ,6510
287
332
  maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=XtYVxHDmJmI1XsAxvdD5BgItRMUXfAJjPFJHliVWINU,2966
288
- maxframe/dataframe/indexing/insert.py,sha256=MPypGv3Hn9lpjEHQNzxcjVOEVTM1bVTDX97MjUDhZFk,3024
289
- maxframe/dataframe/indexing/sample.py,sha256=jW6Vw4eTaNGnqY-PFx9xL5VpFBjrdsNt43stqML4XlY,8278
333
+ maxframe/dataframe/indexing/take.py,sha256=5Pu2P-ejjjm9IqQOC4N4iTj3fcYOT1LkVFOaVf3A770,3512
334
+ maxframe/dataframe/indexing/reorder_levels.py,sha256=zBVjvyvnd0MkPVr85bsoA2GraivAcZrSVk7rx5nIf50,4479
335
+ maxframe/dataframe/indexing/insert.py,sha256=aCK4u-10tHSqlwNKh4OTJz9bFacKr1igq89nYiYZBvk,3023
336
+ maxframe/dataframe/indexing/sample.py,sha256=FbU3tVq4HF6un1VrCdJfdQN4teWMD2EHg5fYkbg2MgY,8569
337
+ maxframe/dataframe/indexing/filter.py,sha256=46HYAYH_2zMoS-gNX58Mp9HyHTOpNRg0i2Ia3a84A6o,6057
290
338
  maxframe/dataframe/indexing/set_axis.py,sha256=EhVI8rS6yfxQYELsgto__qaTOpOV7gYZ9_vl2t03b4Q,5623
291
- maxframe/dataframe/indexing/reindex.py,sha256=Xb2dBhGynwYbrHl297BgVKbIa5P9rEDbgRz-QPrAAww,18978
339
+ maxframe/dataframe/indexing/reindex.py,sha256=a5FDBy0qHGSVkiBffAAAJHFZt-K_ic0k7UUnBhnxOCo,19349
340
+ maxframe/dataframe/indexing/swaplevel.py,sha256=T9zE7LW4HFD6zlI7d4ICttTDDx7m5T1XSfGsUDJRCrs,6520
292
341
  maxframe/dataframe/indexing/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
293
342
  maxframe/dataframe/indexing/tests/test_indexing.py,sha256=J7nmc7k7pCzAz-iolMmDk2hSjWGpY44-Vo5VcmKvRtQ,15611
294
- maxframe/learn/__init__.py,sha256=fxwG8rpVTQ3cVFqSiQcvkkXtg6xpWHON8IUjeDr-a_A,696
295
- maxframe/learn/core.py,sha256=JvCSc-WXGgxoUATPgZ5vMADKa_E0MWoNjQOsD9O7CXE,10151
296
- maxframe/learn/metrics/_classification.py,sha256=plj0QXa_ovj-ObvJTXlshJIeTLOPOylnbekyh7TKUa4,41675
343
+ maxframe/learn/__init__.py,sha256=eRSec-VF7O-4_Trhi5QT3af9Na6pyAqMXb4nOJOyqiU,807
344
+ maxframe/learn/core.py,sha256=qUnsL5uid5CjyRn0jh6OTNxMeusgQ93IQ3QidsrULMo,12002
345
+ maxframe/learn/metrics/_scorer.py,sha256=t30PFHfcrShef0ou2Fbt0eITKWyc2s9uPCEcTK56CLI,1746
346
+ maxframe/learn/metrics/_classification.py,sha256=L_pEebaGykxmBTWzyaFQT5bO5Vj0WjrsLgkju-cEn9w,46560
297
347
  maxframe/learn/metrics/_regression.py,sha256=i3sIabvpiFwIPxmOc4xzAoUiwDRKXqpwwOVKoqYbZbs,8821
298
- maxframe/learn/metrics/__init__.py,sha256=VfomRjkJa4i7lUZ2WvVG7H81rxLVZYvBUsa3IzZJ7fQ,853
348
+ maxframe/learn/metrics/__init__.py,sha256=F2fAcojgvMr7BJ2JO_NCco4TaOASi1fxsnvu30mdIrU,1006
299
349
  maxframe/learn/metrics/_check_targets.py,sha256=IUiTTlDhHxPLKE5kjFxl4s-cIMcVILzWqbmWx61jyhQ,3077
350
+ maxframe/learn/metrics/_ranking.py,sha256=vyyNl8075cuQGE4Av2r_WUQjqBf8e354l5wW-jg7tuY,18150
351
+ maxframe/learn/metrics/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
352
+ maxframe/learn/metrics/tests/test_scorer.py,sha256=c9tKdjUOWm1jvJQ8j6L6lsz5OMnGsKGlJ31kACj9nAU,851
353
+ maxframe/learn/metrics/pairwise/cosine.py,sha256=SCQsNCvTGFB4VYQghakZD_yGzLDWQpNJxIPRxPvbMMg,3471
354
+ maxframe/learn/metrics/pairwise/haversine.py,sha256=dmaSCVdWqfhcDd6g1cqZBxRawmu_YJ2Vn75orqZsIns,3343
355
+ maxframe/learn/metrics/pairwise/manhattan.py,sha256=igm4hbXzlgRar11ILcpzD1GYcmQfzB1l8qs4sZnbnF8,2482
356
+ maxframe/learn/metrics/pairwise/__init__.py,sha256=uMFN2X1okauZDTYjmPvN13nKViEghdKTvgDDDZBZ-AI,948
357
+ maxframe/learn/metrics/pairwise/core.py,sha256=hfj8dX6ImiCAojkxLp7Lse867kwjXXPmr0PSodgEP4E,2583
358
+ maxframe/learn/metrics/pairwise/pairwise_distances_topk.py,sha256=zf8VL0qP-18YYkBGjVe31hH2-mDciL7tgsBC3RCYX0w,3400
359
+ maxframe/learn/metrics/pairwise/pairwise.py,sha256=WwS8KvvzwFiI_bMMi5bXf0f7zp-JTtcJ8bR9QJ-jRKM,3750
360
+ maxframe/learn/metrics/pairwise/rbf_kernel.py,sha256=h8OzlBQAt0u9wjfhqLG66t1s8zMvjT7OsVcD2buTn1A,1468
361
+ maxframe/learn/metrics/pairwise/euclidean.py,sha256=VNzq0bmbaE_elPsBiRjs0Df9dOLq6RK88-dXZCphYiY,6134
362
+ maxframe/learn/cluster/__init__.py,sha256=3eAauHuW5DrHr-HgQrB3EHvubgf7a24TPuzMtUAhPEs,634
363
+ maxframe/learn/cluster/_kmeans.py,sha256=WXtUhAqq0DW06H-z3UpNyqneiG0i2LUR-qpp7TLkib8,27058
300
364
  maxframe/learn/datasets/samples_generator.py,sha256=rrRHoHNzzlKjSnv6Xxd4Y0QS5eLjEkNHcCKKr-pVmQg,21985
301
365
  maxframe/learn/datasets/__init__.py,sha256=d9Y7Il4Ii38KYqXQUbtRwnLflpgNPn9Y4Vq912wzbo8,720
302
- maxframe/learn/linear_model/_base.py,sha256=1prHwbYdTa0QRNp-T332tvYuDf5vdz-NJLV5LPBD1Sk,5330
303
- maxframe/learn/linear_model/_lin_reg.py,sha256=3Khyc6IhcSoHBtR9-m36jN5EObJsGTVsdEovBdV4QWA,6247
366
+ maxframe/learn/linear_model/_base.py,sha256=Akou7oRV3sEK4Vqaz0AJhTjwve_qQmNvQKQubS60ZRM,7003
367
+ maxframe/learn/linear_model/_lin_reg.py,sha256=fHWtC7_9W4XPaiu9-lE1tZyf6dXbX4aX4C9QweAt__8,6280
304
368
  maxframe/learn/linear_model/__init__.py,sha256=Wv6xpF5f7Nt3Qm410Xz-xC-940RoFna4Oun3jlsMBAA,636
305
369
  maxframe/learn/utils/multiclass.py,sha256=NDo3D6cvsoibyoODfD8R38w9pqB7ShUkVgixzOkURms,9042
306
- maxframe/learn/utils/checks.py,sha256=hBq-vLaJc8Usfpjy98hZG12ZlNQ0HG3AcUz0f7nE37s,5113
307
- maxframe/learn/utils/__init__.py,sha256=Y1lO_Ab_-HQElm5UWJzqLqh8afU1tTs4GxjKdEvx4Jw,815
308
- maxframe/learn/utils/core.py,sha256=SquqLL-4L2Vl48K7_VEiI80WEgxtS4PmqAkVi8dBEx8,1634
370
+ maxframe/learn/utils/checks.py,sha256=sERFEMRadqY3fyremCPWjl1vbof9vmcbHUqmfx7hmAc,5059
371
+ maxframe/learn/utils/__init__.py,sha256=FyKNdky4DscZUPtqHCSaaJWZTGf_5PcZvB-2lj1iyrY,828
372
+ maxframe/learn/utils/core.py,sha256=ObLqy2db9BKzyu6qk4Jkk74OGXai2f1sQPWJ6ma9wRY,3507
309
373
  maxframe/learn/utils/shuffle.py,sha256=HbHv17gd4OdUXy8FQa-KnInRAOjKFnFdeQxZTm9AwyQ,4321
310
- maxframe/learn/utils/extmath.py,sha256=niBV86RB01ImGretjqTT2CCwfVfDpOoRpXoxdQDwREU,6489
374
+ maxframe/learn/utils/extmath.py,sha256=0dzpA-tKtUkpzwqJNBdreGGhUxHzGTrqOEzVltuWYhM,7368
311
375
  maxframe/learn/utils/_encode.py,sha256=9uX8gP9kVP6pOdootrNfaVBNTJz1Cbr_Jh_23nk1O4s,9704
312
376
  maxframe/learn/utils/sparsefuncs.py,sha256=KjVClmdDaPzXXprAHpsDsEBmGJdaXmmjvsPnBCxTrqQ,2744
313
- maxframe/learn/utils/validation.py,sha256=s7TpjAyDvGTe3wKOT71DCq1Iu74tVYH8JiRNJ9Cdc3I,27075
377
+ maxframe/learn/utils/odpsio.py,sha256=pnVVNw-9M2SuXgw9fTEw7ZesmbiaH1B6B730XdfTWzA,7599
378
+ maxframe/learn/utils/validation.py,sha256=H0kPa0q0KfsP5r0qb2wnpc0l5ziQDsIQSKFMBROrROg,27075
314
379
  maxframe/learn/contrib/models.py,sha256=l6IAxAYa2EK4BBnCqIfoNaMjJ_91Wg5nptVRPCHsPz0,3519
315
380
  maxframe/learn/contrib/__init__.py,sha256=7ayYHlGHqy5fkl89n3ceoAR1ZHi57sb9FF85PS9Hwpg,676
316
381
  maxframe/learn/contrib/utils.py,sha256=Mqm5peCV45D2Q6qF4wZS57GdD2aGlVe03YFBqJ4fAIY,3383
317
382
  maxframe/learn/contrib/llm/multi_modal.py,sha256=C6Vq-U8JRUSZMUDsrWt9m1GBPyp9f9V8ZaTzBNhsA9U,5406
318
383
  maxframe/learn/contrib/llm/__init__.py,sha256=MBEWoYEQtBpZL070GOh721OYMvH3D2Y5BzyB4_DXZjY,649
319
- maxframe/learn/contrib/llm/core.py,sha256=Z4s1ZssXCf5ebl-uDxGGlJ3KmXsbAm2wVZvikJZd6BM,2723
384
+ maxframe/learn/contrib/llm/core.py,sha256=7RkfPjOYbBDVICenBSn7tY44pFiv4tIcSSknHlnO4cY,2828
320
385
  maxframe/learn/contrib/llm/text.py,sha256=Imsg_7cw0XOis4dmTuZTSw1iP0RIRta7rKVjx6TW35Y,9344
321
386
  maxframe/learn/contrib/llm/models/__init__.py,sha256=I_l0NIpKILLkpPj_3xOv176QvHTeGstPq4xi688Z40c,661
322
387
  maxframe/learn/contrib/llm/models/dashscope.py,sha256=X8FLgZ73U9UW_35wgFfk_2p11sCsDU41rLcy8eo6B2Q,3422
@@ -326,8 +391,8 @@ maxframe/learn/contrib/xgboost/classifier.py,sha256=qUyC8E_HrARlRiq-2hp3G1GLkxIg
326
391
  maxframe/learn/contrib/xgboost/dmatrix.py,sha256=SYrcXqpr91PG1ZNMFvCBE5Y_NO8sztS0-O3CBWhVEhY,5206
327
392
  maxframe/learn/contrib/xgboost/predict.py,sha256=_KjOzqKL-mkH1g_1QDAq0CgrKzKlyJ9YwFMp3XitZnI,4186
328
393
  maxframe/learn/contrib/xgboost/__init__.py,sha256=HsVMBBNXBQs2GaHMjuJrMdJRhpTDxQ37Amjc1GH7ESw,1051
329
- maxframe/learn/contrib/xgboost/core.py,sha256=OkmRC2-z5R5koGu4krxPxCdnFi9iuCQNyY8viBCfBeY,12186
330
- maxframe/learn/contrib/xgboost/train.py,sha256=9Gs6aHqpLoIVAgpVvxActabHEv2Mc563_scw6IQ8Zg4,5749
394
+ maxframe/learn/contrib/xgboost/core.py,sha256=wQrXypdbWBhYtUyxQNWbDTMHSdrARCm_fhYhqaDitsc,15078
395
+ maxframe/learn/contrib/xgboost/train.py,sha256=LRFtwxRMym0RWs6Z4tbJzERP62Gz-cPWYSAzBSmfSCA,5936
331
396
  maxframe/learn/contrib/xgboost/regressor.py,sha256=cVMd44FP_x8bvRKcUOBUGd-gMnyPvK-guBhVUH2Y1Vo,2886
332
397
  maxframe/learn/contrib/xgboost/tests/test_callback.py,sha256=W4NZDAIrTZ6aJliPWXlsYgoAMOFpHafPERDGz-hPtfY,1542
333
398
  maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=VrWhBeUCXzofVr-QAbtmK4wVeQqV1Erd1Rwj32lNceQ,1406
@@ -364,14 +429,14 @@ maxframe/learn/model_selection/__init__.py,sha256=hr1hzAL5c-1FA8kSocJbzfaPWCdFWb
364
429
  maxframe/learn/model_selection/_split.py,sha256=p_hmHKEg46_-jpEjvaAGdFmE71leiU7Bx50KPbaP-Kk,16136
365
430
  maxframe/learn/model_selection/tests/test_split.py,sha256=fbA0pYK1sB1ajDFaNXC9aKxZLC5JbmC4JzJaV8_tbO0,4983
366
431
  maxframe/learn/model_selection/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
367
- maxframe/core/accessor.py,sha256=htuml0N9rF3VAtTitTAqIIVEEb5DZa4D_bcwfQz_PHQ,1482
432
+ maxframe/core/accessor.py,sha256=ZSRHozzfcevWgOgQQLnaL0zvEpDE-IxOmRXvX3sqXRc,1543
368
433
  maxframe/core/__init__.py,sha256=LAezPKNkPMrREcttR3e9_xkP37tm2SQxT1AHYYRYuKk,1537
369
434
  maxframe/core/mode.py,sha256=NABIkrhsArHlHH2ozusVdEet4lryS95ltUZnn0IBZNc,3011
370
435
  maxframe/core/context.py,sha256=eYHFQ-chSQs3M-D7jOnVgrqmD8hm2ynUFdjHAvDVkss,2556
371
436
  maxframe/core/base.py,sha256=qlIzixwSL-MtAgFdta8j7wydD4KCaehcbH5P0T7aG6M,4535
372
- maxframe/core/entity/tileables.py,sha256=cXBEJdP8NB8RZjjEpJ2bNAJ3X21d_CfS1R3vRqhiqwc,11395
437
+ maxframe/core/entity/tileables.py,sha256=SmACnpowt3vih-o2QgLVimVMzyf81hyLlPFmOmhEpwo,11433
373
438
  maxframe/core/entity/__init__.py,sha256=mKIcm8ffxA4LUwTzwniBPdOSMNIag0XVYPav5J89Kz0,1096
374
- maxframe/core/entity/core.py,sha256=Itv6FPRZhcnaupL8H7yVHT4llyRzFEf3oo9bSQdAF5U,3846
439
+ maxframe/core/entity/core.py,sha256=OnLODBF4Q9lVWrGPJqT0RlDdW8ueuF21f65hLIhzfHU,3951
375
440
  maxframe/core/entity/utils.py,sha256=9tj2tU9c1hZEjw-0Eui3gyzR6E4I8s8MR4jF7rGsmBo,1445
376
441
  maxframe/core/entity/executable.py,sha256=-MpsiRTSybMrIUw8ifmYn1Zn8FwClKKvZLGhi1a7Fmk,10956
377
442
  maxframe/core/entity/output_types.py,sha256=OHRKfvOWMpABBR46E3MBobETlk376mgaNiq2wLpOoA4,2753
@@ -379,8 +444,8 @@ maxframe/core/entity/objects.py,sha256=7oBbZ3mYeEgn3TJFCAdQffPChRk8DK47Yj-wvqyYY
379
444
  maxframe/core/entity/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
380
445
  maxframe/core/entity/tests/test_objects.py,sha256=KiUM7EKwN48OvC8jaizpFJ3TVLZWIolQZIgzunpIuMA,1423
381
446
  maxframe/core/graph/__init__.py,sha256=1jzaIyQZosmCj7Hw70fNOLcmuaLq6DbKSqi1YSF3aEA,873
382
- maxframe/core/graph/entity.py,sha256=OKMyU4awrjxGpw6RreXrSpsNXyY1l0A4k7Vpvco63WQ,5195
383
- maxframe/core/graph/core.cpython-38-darwin.so,sha256=lWZpAmwkY8PgXKRq3h0EuMcIhne3RH60Vq00JLGaEuY,685872
447
+ maxframe/core/graph/entity.py,sha256=dkXRWC0WF2AYvrE5ZrVMoxDF9lxMOs9iBY1aXoCkMns,5155
448
+ maxframe/core/graph/core.cpython-38-darwin.so,sha256=TuFERTrkGSIbF2vgpc5yJ-kAuX0nT6oytsgXkMo4w_o,685872
384
449
  maxframe/core/graph/core.pyx,sha256=2P9KckxokoUwSOWIeyxB6VJOjdcBdi__KorxLG5YUQU,16104
385
450
  maxframe/core/graph/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
386
451
  maxframe/core/graph/tests/test_graph.py,sha256=bLHOAiPQ_eMfnlpRgY1VRQnSvjoiCe1NamILiQcneFc,7462
@@ -392,109 +457,114 @@ maxframe/core/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXv
392
457
  maxframe/core/tests/test_mode.py,sha256=DUEuDy4HuKMxB-D-8qg10Uh4zTHJZqLOcpwRFWSx7lA,2432
393
458
  maxframe/core/operator/fetch.py,sha256=Ie2rkI-FHxBad_y23b85WJm5E5MAvKiQGKOS9Jd3SEM,1371
394
459
  maxframe/core/operator/__init__.py,sha256=lP5MnQc5nqZs6Ywg4Q2CoMkRP3NsgO6fqamlRDPciMI,1089
395
- maxframe/core/operator/core.py,sha256=D2e8RU75-MRk7-2UAlM4Tx69Bu7sFMHEDHb-_QjACYU,10022
460
+ maxframe/core/operator/core.py,sha256=ky7rPoHInvasltqNiQjIT-BIv-1FLppiKx2i-bLb_G8,10246
396
461
  maxframe/core/operator/shuffle.py,sha256=7yjkAq2D0ByU7Uw5o-WyW9rCbCUoxnH9h2r0uO2qk9k,1801
397
- maxframe/core/operator/utils.py,sha256=QeeLO8013Od4LkvlI2-VajkBKqqD0VQiYztojqUkw5M,1706
462
+ maxframe/core/operator/utils.py,sha256=W3b1JQq4BA-uXQvU87PSSsGTgoPm4g163H36PazpC7I,1975
398
463
  maxframe/core/operator/objects.py,sha256=ieJW2EsXm6hCyETbzYPE5ZKtkaMsZRWOEDvL3irenSI,1395
399
- maxframe/core/operator/base.py,sha256=USFcJ30H8cPxVd3cgsVA06w4Qv-vKkZLlBjIsVHtRUs,16156
464
+ maxframe/core/operator/base.py,sha256=odW0iipL2toMwKgck4lO_n7oikW14gUzx9sdStIqu6Y,16460
400
465
  maxframe/core/operator/tests/test_core.py,sha256=wBUmt-if0yOTPX22bvMYOVH0ltxj7Jac3mAyOG2Oslk,1691
401
466
  maxframe/core/operator/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
402
- maxframe/config/config.py,sha256=p4gtE8-73fPf2yPtvMf_1UUngofH6qYlnwEKctGqGj0,17460
403
- maxframe/config/validators.py,sha256=m1DMvljF_2RWuB6u230AIBKSI_Ww7oqZOR_UlAg54cM,2616
467
+ maxframe/config/config.py,sha256=qKxwIXPzh18GHBpsv9uytj4I4hRd_QHPsImuhN01OVM,19017
468
+ maxframe/config/validators.py,sha256=JmETg86Yiff-0AQJNZplCIyraLf8Fnqwv46vgH-pf-8,3988
404
469
  maxframe/config/__init__.py,sha256=wxR1LzWT15vQDv12MFazycX2fwdMLGZLrqcpuEFqFck,656
405
470
  maxframe/config/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
406
- maxframe/config/tests/test_validators.py,sha256=hf1ibJpBA0mVuc-ne-F1s6GLrYF3xQ1GFqtOELXYt48,1240
471
+ maxframe/config/tests/test_validators.py,sha256=UxhT-OlSrfJeylwmwVqnm5Q5lNCqvKfWNjFa2iwCRQo,1569
407
472
  maxframe/config/tests/test_config.py,sha256=DfNGfb_nhTBAvg_jqBPBVSG4z0PzjXlwmur70TUPMCI,3219
408
- maxframe/serialization/exception.py,sha256=1Vv2o4LYaTPzuTGx_1f4c4qGGLChqUEbmvkVfC72vcQ,2993
473
+ maxframe/serialization/exception.py,sha256=26zZ5uBcJ1OYbrHE0BzkXabVRLu6KHRKp50Hg7FDED8,2962
409
474
  maxframe/serialization/core.pxd,sha256=1fF5QiN1W45ZdBLdyo4DLBheBhqOmz43Ph2z7dVYoGU,1530
410
- maxframe/serialization/pandas.py,sha256=PJf-ceGUpXBXQluRlQ6RDmSCPKQT8mf23mQzI5FRMRA,8633
475
+ maxframe/serialization/pandas.py,sha256=frDddaM0NQRVdM3D83TPFLwGptcXspurwonnGQpIprU,10017
411
476
  maxframe/serialization/core.pyi,sha256=n5VtRZOVHU0jiDNpKVM6CtqJYWFD0kjPMgpzjO9D08k,2261
412
- maxframe/serialization/arrow.py,sha256=A1gDQ7BmsLk_57qPd34e5SIMSqbuMZrfKsixLtHrpeg,3418
413
- maxframe/serialization/__init__.py,sha256=HLNqwNIamJgsiCv8yuDNrtJLY2_SZPyW3xCWrci_rJ0,998
477
+ maxframe/serialization/arrow.py,sha256=Gzmt5LgfGncld5tnQazgbcT7Yh1XaicZVtahUOc7eiE,4528
478
+ maxframe/serialization/__init__.py,sha256=sIPAEa7Uc9iSCArFMwUyC8u0iD3GRzl3FFrbV08-B9Y,1047
414
479
  maxframe/serialization/maxframe_objects.py,sha256=Ha2pFpBivutH_YES1EQN-zpWu3TbKtotJHiuc8Cs8S8,1365
415
- maxframe/serialization/numpy.py,sha256=IbNaCDceyG7Bl3d_rT2NRnB0OaaWo82h1tycjiF2YZ8,3540
480
+ maxframe/serialization/numpy.py,sha256=eIAKj4DocCptBCHL6qmWCR3_rhIZ-rOxPCMHrnzDvS0,3895
416
481
  maxframe/serialization/scipy.py,sha256=W4P_r-4tAGGfVAFhwqcaHBxdW-dpZ6rIMLuppQzMXjo,2427
417
- maxframe/serialization/core.cpython-38-darwin.so,sha256=IB7MOfO_mactB-Jn3PHSPmsZqWYPyzzwTmOTC3l0ps4,1233264
418
- maxframe/serialization/core.pyx,sha256=dMVZPqMYvAGMklImTIxQBZfG9pwkmJxzAo4G140RmrY,38585
419
- maxframe/serialization/tests/test_serial.py,sha256=UBdBo41pAGSmApOYbMue5DZ-dliZ8FkmUctT8jy0QWo,14031
482
+ maxframe/serialization/core.cpython-38-darwin.so,sha256=N5Vh-zMieLRD2g78msOw8rc1cbt9Xjqp-bGcWWvh-vA,1270144
483
+ maxframe/serialization/core.pyx,sha256=6AunkzSFgwpbGaOql2Gk2uxoVMiWN48EDCBbCqpUc_k,39700
484
+ maxframe/serialization/blob.py,sha256=GpIZVSeAhIRiLUgBRkq_VSYLsyyH25BKW-WKmuTbYso,1138
485
+ maxframe/serialization/tests/test_serial.py,sha256=VEDhKKq4_hd0qC-VcCPx7ir2cHf2-69AAPzwqkgPFRY,14865
420
486
  maxframe/serialization/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
421
487
  maxframe/serialization/serializables/field.py,sha256=MRZHAqtDwt8iutTV8lH4bWMH4AjE1ilFSbUpj4ZLliM,16013
422
488
  maxframe/serialization/serializables/__init__.py,sha256=nPvrC735pSrvV2kKSb7SQ_GMlVEfZiQb0svsla1_mpk,1351
423
- maxframe/serialization/serializables/core.py,sha256=6oyargx9bCUG0R7cSsfFBDKhc8BezAopEDlqZQQYUS0,16999
489
+ maxframe/serialization/serializables/core.py,sha256=MuzIg7tzuqBNETy7rNQhInSxy-d6JTDsRPSr_FMmXRQ,17029
424
490
  maxframe/serialization/serializables/field_type.py,sha256=6dVvesMhxWc6gtkcp_uDm4GasLxhs9HnR1vWRQtub8I,14933
425
491
  maxframe/serialization/serializables/tests/test_field_type.py,sha256=KwsN4yyyS2inFDBbb882lLkrmRX09TT9A0yWKY-NUmA,4333
426
492
  maxframe/serialization/serializables/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
427
493
  maxframe/serialization/serializables/tests/test_serializable.py,sha256=RwbUv0VDJdsyMuYaCmueQ0brFtZuIC84gn6xYw_YBMQ,10694
428
494
  maxframe/io/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
429
- maxframe/io/odpsio/tableio.py,sha256=2agl5Sbq-WCq7LPIaV17srZYSGUaQppjTq8FOuTBdhM,24831
495
+ maxframe/io/odpsio/tableio.py,sha256=J4ft51Jb4cuWESsdGdZia2zO5U09W1bdjkTAhXgO7Vo,24987
430
496
  maxframe/io/odpsio/arrow.py,sha256=Wf4XReyY50O-jxnFBpdta1zS-ABGh7JFoP78A1zS_h4,6644
431
497
  maxframe/io/odpsio/__init__.py,sha256=P4CtAyeOmu5u1J8_tNPrSSY5jB3hBciC5c8N8PUmKsk,917
432
- maxframe/io/odpsio/volumeio.py,sha256=3Vf7PqT7LZ7enbmzjJfk5Pc15Y5DShO5nBYhI1ZrBM8,2948
433
- maxframe/io/odpsio/schema.py,sha256=20PjFh6D3D84dLNKkMSqSXO_oHfvdPhPPnGUTBAUh0o,16817
498
+ maxframe/io/odpsio/volumeio.py,sha256=9HcDvl87qkVM0cd_mSINBGGkLifp7NALK_M_M0RIxkc,3381
499
+ maxframe/io/odpsio/schema.py,sha256=XNRecSqu1cdTkPYvjY0Bu31k-a2vjFicePZjRxsmlv8,17119
434
500
  maxframe/io/odpsio/tests/test_tableio.py,sha256=m9ACNirwoPbxZP3pLtIYyXYCkUEyldCQ51hrGzkZXLc,7118
435
501
  maxframe/io/odpsio/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
436
- maxframe/io/odpsio/tests/test_schema.py,sha256=Y-Qc4N0z1dic1FT_sppxyQAnGXkVWzzikmlZ3c7judc,18486
502
+ maxframe/io/odpsio/tests/test_schema.py,sha256=OUQWFHtRBg5ZkyPpFaj0HdQ_u5k_JCb6p1rZd_inGyU,22921
437
503
  maxframe/io/odpsio/tests/test_arrow.py,sha256=OTlIobm_TprI-LCdq-z9OT65H1L9Zt8bfImcHYg-MzE,4450
438
- maxframe/io/odpsio/tests/test_volumeio.py,sha256=rmdnB6uPd3VpIOP77YkMo8c12zrwGi1X-wDwJzGDogM,2625
504
+ maxframe/io/odpsio/tests/test_volumeio.py,sha256=amai2vlGvtFOCOVou8ZQ87wfoZuQfIBCSepw_9w4qXc,2339
439
505
  maxframe/io/objects/__init__.py,sha256=MPpsLluYCLU7chOY9pauznYk_PHJqVbKns6sjdGFLFk,754
440
506
  maxframe/io/objects/core.py,sha256=bWlnncGLSa9f3_YIDhEA-7XTMjpSBX0oXeAhvsqTgUw,5303
441
507
  maxframe/io/objects/tensor.py,sha256=GC19xpremk8awz530OcAplGpyrnWf5HoyapGfZdR0hw,4654
442
- maxframe/io/objects/tests/test_object_io.py,sha256=JMvTE1PcsoT6R1tvnAzgtcE3yIh10Hj2dwFYTA59ihk,2528
508
+ maxframe/io/objects/tests/test_object_io.py,sha256=a5kFyYMveAoMaPn-QbfUzgIJgMgW2gZR_DEEFsT1fAk,2591
443
509
  maxframe/io/objects/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
444
- maxframe/tests/test_utils.py,sha256=NovUVZmLnh9AaZLC9M9MQ1z8r9KXkajCK1E8dITrFUE,18539
510
+ maxframe/tests/test_utils.py,sha256=6dYzl6W3GqRQv1Od7rM5BKXmfpA8bAnnRHkeq4B1JYA,20345
445
511
  maxframe/tests/test_protocol.py,sha256=bKfuDfN0B0DatPpDs2na6t9CNoh0N6UdhZpchjnln4o,6121
446
512
  maxframe/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
447
- maxframe/tests/utils.py,sha256=nZi5T7uzHO5Q95dRJmjCOOwIl6zeHgb1z6yx0gokA5E,7132
513
+ maxframe/tests/utils.py,sha256=BYrBJhJWNnoXy7n-mRVk2E-FtOJofDuw5aQvPpLv91I,6923
448
514
  maxframe/codegen/__init__.py,sha256=xHY0SUB8nLeqnwaw42RBw08AWrp86R_ubsQzkwlG8-I,865
449
- maxframe/codegen/core.py,sha256=fenVW3Ft0WCG3rjGaBqtF9IW4PqNHxWA1IbgVy-swLY,20215
515
+ maxframe/codegen/core.py,sha256=Ag8QOAj0-cU0t4SenEhFqdibuQYnasxKsxaG7gNi6cI,20209
450
516
  maxframe/codegen/spe/remote.py,sha256=W3EwT5uwsbf6nRtCdanAD4RTDdbI8Of-POCC9UD23eQ,1254
451
517
  maxframe/codegen/spe/__init__.py,sha256=okS1N8ei8xvlLLNVToDiMNWcOuqSEXr4xoxAg4FqBls,688
452
- maxframe/codegen/spe/core.py,sha256=l2QvEVp_VzFNB-rQPupxLsgaLY2XkF2CoCoWSAo1vZc,10545
453
- maxframe/codegen/spe/utils.py,sha256=deUrkoMo6IejKyKkr90mK7Ky_auX6porpF_heOm40pA,2011
518
+ maxframe/codegen/spe/core.py,sha256=MRwZk9MrPEaqsQZLy7WjkGUqltg2NZ4Smxpp1Kwbi9g,10547
519
+ maxframe/codegen/spe/utils.py,sha256=Ne3a3yrNY-M9bfEGvqqtOmaQvA-YkTwj5lrUfDckzEc,2098
454
520
  maxframe/codegen/spe/objects.py,sha256=6D0qIQdOlk4RnB8RIA0Z8w65tn4rLBj8ETykccL8SPY,1043
455
521
  maxframe/codegen/spe/dataframe/fetch.py,sha256=QERcNnGxiLSgdhAYpZeecP_1t9dhsIgFpQXK24tmlDU,1051
456
- maxframe/codegen/spe/dataframe/arithmetic.py,sha256=4wDKlMw-rXWQOZVEflLlXwVANzpSuQteepjOKzhQ3Lk,3403
457
- maxframe/codegen/spe/dataframe/misc.py,sha256=4sExeLfiGjxwSu5DXlIJChea3KmI5HFI_xYUF1WUGpU,11247
522
+ maxframe/codegen/spe/dataframe/arithmetic.py,sha256=uo7790kzw97rzhlavpt-k2OrIlRcTMftNKFVjR6FN88,3543
523
+ maxframe/codegen/spe/dataframe/misc.py,sha256=-9xqUwXmAu_MxX7zif_97Fti_jZ6NSQEwkErankCt9Y,10528
458
524
  maxframe/codegen/spe/dataframe/missing.py,sha256=_e8R5nYRwCg8Oawcxq7rPcmuSNlfcFf0dcQVR7ldkYU,2812
459
- maxframe/codegen/spe/dataframe/merge.py,sha256=mozCd86LCfMaMFxTt3dLdFdOXbBE1gDMY2iw63zKpFU,2761
525
+ maxframe/codegen/spe/dataframe/merge.py,sha256=JLgN9pbqvwTDTSw-_LOt88fEIpPnH67ksvDYICnkfAw,3960
460
526
  maxframe/codegen/spe/dataframe/window.py,sha256=IidMfs1m3TjHdQ0fgCmfTfcgufYZ9PLrEi3yAPQlNX0,2947
461
- maxframe/codegen/spe/dataframe/reduction.py,sha256=TFlRyMisVcT73oRgd574x9JVl32eoYNeOGN1NA7m1lQ,5254
462
- maxframe/codegen/spe/dataframe/sort.py,sha256=ZMvuSPg0f53IhqlKogSur1RRj8XHYTCNi7lRbjRNFvE,2781
463
- maxframe/codegen/spe/dataframe/__init__.py,sha256=2Q86asDgb2oo1kKpEi8H-1eyqUBB1Ddnmn8cpvmvo4Y,896
527
+ maxframe/codegen/spe/dataframe/reduction.py,sha256=ZmXICdLRBzpWJBohy0XHCkK_DCMfmZ0NnSPijfzuJfk,5369
528
+ maxframe/codegen/spe/dataframe/sort.py,sha256=Ylxi8jlmNDRUboxmamqS883ixVj3xsri1HYiETpL6Jg,3446
529
+ maxframe/codegen/spe/dataframe/reshape.py,sha256=GuGcp6L_gQnfoYVdG1-apUWpWnsNsh9hiI1b2NtFFpk,1560
530
+ maxframe/codegen/spe/dataframe/__init__.py,sha256=ZOlG3XUC8kzZD9FMqsStRsBd9Y13B7pQJGSH1O9-agA,909
464
531
  maxframe/codegen/spe/dataframe/datasource.py,sha256=altNY_hoxSxzQ8Z0QYLU7Utn_iOdvbWnpQMjecuw-DQ,6759
465
532
  maxframe/codegen/spe/dataframe/extensions.py,sha256=gj0i65bUS3LCTVWXDZABgZRy4jmw6wXTyZqeHy56Oz4,2779
466
533
  maxframe/codegen/spe/dataframe/statistics.py,sha256=WBMNkQqx84IyHCzKqlD80-CUgR6i3AcSpPU4Y7AwbY4,1787
467
534
  maxframe/codegen/spe/dataframe/tseries.py,sha256=2XW9HH2H5YlcvZgKhixYoEr8z076M48vjQsaWwLUKt0,1816
468
535
  maxframe/codegen/spe/dataframe/udf.py,sha256=q7b6kEvHMkLd3-RuOhpX5AdQtDYIMOO2j1cDjXEULBs,2127
469
- maxframe/codegen/spe/dataframe/indexing.py,sha256=Sz6gpO37jKxfEid0jbsC8XBEup0M-NvOf4GpuJGpvqU,9544
536
+ maxframe/codegen/spe/dataframe/indexing.py,sha256=-LVJM1ic9RXKB_xBhy22PF2Y-xhCfG8PYBm1vS71s_s,13050
470
537
  maxframe/codegen/spe/dataframe/value_counts.py,sha256=XyyJRcrT_5DshId-st_Bh2qnNrto8m6tqiB6-WFgn8c,1354
471
- maxframe/codegen/spe/dataframe/groupby.py,sha256=dJgvT5-cACDktukwlmDBYZsOzdi2upwwFHngSzXQwz4,9525
538
+ maxframe/codegen/spe/dataframe/groupby.py,sha256=Ms3gXg1JLF5EzkdR3Xov3cs7V1XE3Pm6NEiYVyeopIs,13503
472
539
  maxframe/codegen/spe/dataframe/datastore.py,sha256=npfs_au_az0p6lyCAm4AmxZYFMZbHHYebXfbvdJ77TQ,8111
473
- maxframe/codegen/spe/dataframe/accessors/dict_.py,sha256=foy0qrCl4zgbww6qeNR9HVsfuYKxmwqW4p0vB4j5n_8,7411
540
+ maxframe/codegen/spe/dataframe/accessors/struct_.py,sha256=Oh66AnmzroJ1o4x8BhOPCbI1j1pJBvArMruNu43vUTo,1000
541
+ maxframe/codegen/spe/dataframe/accessors/dict_.py,sha256=wNWN5s15jJbxFN1mzLBE-lNqB5MQQjjYXe4LgFnFGMI,2621
474
542
  maxframe/codegen/spe/dataframe/accessors/__init__.py,sha256=JdWwxGimtqrbrN8USfnv4PeRpF6M5lHrUOyKfRikvoI,630
475
- maxframe/codegen/spe/dataframe/accessors/list_.py,sha256=K713_cmpE5fQsQi8mdjMjYpWlecbnI9rDH5y2fVyomw,3103
476
- maxframe/codegen/spe/dataframe/accessors/base.py,sha256=I9-mTTTSNuGA-QB4GEtvV8X9DNgyc7HbVQSe_S-mu7w,2179
543
+ maxframe/codegen/spe/dataframe/accessors/list_.py,sha256=AqyHLu63gN8l7EV35pLu9YT7zmF6FFiyNVMxGXWK44w,1390
544
+ maxframe/codegen/spe/dataframe/accessors/base.py,sha256=ZcFNhFBmPCWmUlMhGSdDKgDrVh3wN9O3nBqCKqnKV4w,2885
477
545
  maxframe/codegen/spe/dataframe/tests/test_value_counts.py,sha256=ljzH0DnSiMGpBaY0uA1P6JS4UIro1aN2xCifq2_k7kk,2010
478
546
  maxframe/codegen/spe/dataframe/tests/test_statistics.py,sha256=W8NYJQ2DIL30oK1Aer5rPjBW9tm50NM8Swv59V_N9Qo,2271
479
547
  maxframe/codegen/spe/dataframe/tests/test_extensions.py,sha256=oyTaxhMP8ryzBoWexAueG2_PQtzyw1fhXHIxhUZXTWE,3082
480
548
  maxframe/codegen/spe/dataframe/tests/test_datastore.py,sha256=2BoBnyzj65AdwGsVQEiVx_M7ddjknGIsqhYBzQh1uZw,7007
481
549
  maxframe/codegen/spe/dataframe/tests/test_datasource.py,sha256=4bMzo_0pwWZGRKz_k_Z99I8sWPiwgEJqf_s6IarvMbg,7136
482
550
  maxframe/codegen/spe/dataframe/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
483
- maxframe/codegen/spe/dataframe/tests/test_sort.py,sha256=IkUIbYw2EgwTCg86UTCOXkVYqWGLQrhyk8fa3yhwpNQ,5276
551
+ maxframe/codegen/spe/dataframe/tests/test_reshape.py,sha256=buFp3QdnLy4fTyZrqRRPND8UKbwTrUxy_OI4cg5KllY,2279
552
+ maxframe/codegen/spe/dataframe/tests/test_sort.py,sha256=yCiw_Z3DtTHXEellXgKzUnUAoLAffLV-V8qSRFdj-5U,6025
484
553
  maxframe/codegen/spe/dataframe/tests/test_reduction.py,sha256=Q-YBNvJjCadl-uDkq_uLN6MFIpuDIyDJyqChfJ00UgQ,3407
485
- maxframe/codegen/spe/dataframe/tests/test_merge.py,sha256=R3R949XEZTr3Y0FlHn8u8rcC7vFqY9cDjwxKRJkS-x4,12949
554
+ maxframe/codegen/spe/dataframe/tests/test_merge.py,sha256=Mc52MIRiMMNlywfUUFUEzrBmvB4scOVDnpPW-BA0Qg0,13681
486
555
  maxframe/codegen/spe/dataframe/tests/test_window.py,sha256=3q6lWsxCrvDd24mZHHS6_Ddb88FBu8ZVFHrZAPTQAN4,2275
487
- maxframe/codegen/spe/dataframe/tests/test_groupby.py,sha256=l87QElAk-2_dCGJ2UHYRoHPBsc1O040YONjmU8p60jg,7869
556
+ maxframe/codegen/spe/dataframe/tests/test_groupby.py,sha256=icf5G61XDawNHArISQ-7VPtjBJnz6W_zsLWW6kY4Mo0,10491
488
557
  maxframe/codegen/spe/dataframe/tests/test_arithmetic.py,sha256=uBoDXIGYJ7i_CsYw7pZkOvirQw5zPYYP1zDELTsQm_o,2639
489
558
  maxframe/codegen/spe/dataframe/tests/test_tseries.py,sha256=n-IgozLlwjZ6zRLky3RgdDNsBM6yJ1-pO6sZTgznV0Q,1234
490
- maxframe/codegen/spe/dataframe/tests/misc/test_misc.py,sha256=e35z0OGwwqeeiUdRqNxbJVV4Y-tPWdeadhLhh8L9NDI,7302
559
+ maxframe/codegen/spe/dataframe/tests/misc/test_misc.py,sha256=pJxiYPeuhXkN2sA4fCM6cu1cugkL_dW5zXV3iH7HuB8,6311
491
560
  maxframe/codegen/spe/dataframe/tests/misc/test_drop_duplicates.py,sha256=ZjuBexbLQ4oM8ooQ8qemw04Hr-yNTVDrTC9YxF6cKQ0,2620
492
561
  maxframe/codegen/spe/dataframe/tests/misc/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
493
562
  maxframe/codegen/spe/dataframe/tests/misc/test_apply.py,sha256=1CHLT7KQI1YkOiNI6BZ6jEiTsAtkNf82N904HZy6M0Y,4380
494
- maxframe/codegen/spe/dataframe/tests/accessors/test_list.py,sha256=YNoNfs6kj4R2PAXkafzSq0KQDRf2JergacustwF-76I,3836
563
+ maxframe/codegen/spe/dataframe/tests/accessors/test_list.py,sha256=gFqnO4ycxgkfx86Mv2B-RLkWElPRIdUSxGCA7632uuc,3755
495
564
  maxframe/codegen/spe/dataframe/tests/accessors/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
565
+ maxframe/codegen/spe/dataframe/tests/accessors/test_struct.py,sha256=_AdofSk_UoUNgNWbBapLhwQmcFx5cFKy798cbsO-vMQ,2377
496
566
  maxframe/codegen/spe/dataframe/tests/accessors/test_base.py,sha256=tuh_gXmxvfH6azymWg2-PJgA6E2eRGEzAmiKyGjYFPQ,1266
497
- maxframe/codegen/spe/dataframe/tests/accessors/test_dict.py,sha256=O_M387mxhFS7Ym1sPfuTmNcJLADlDnSjHOm0Zqs8Qrg,8890
567
+ maxframe/codegen/spe/dataframe/tests/accessors/test_dict.py,sha256=hJKF9l5XhHBmpfaoYkf4lO0AFOE0EVKaWE7Cjk5bP-E,8651
498
568
  maxframe/codegen/spe/dataframe/tests/missing/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
499
569
  maxframe/codegen/spe/dataframe/tests/missing/test_checkna.py,sha256=mcBK76t_lRlHEy671biWr6Er_tEnzcBwQjyZoDmzXDU,2940
500
570
  maxframe/codegen/spe/dataframe/tests/missing/test_dropna.py,sha256=bhRto8o9NqOKKTEBH5zwzZRE54VZzqtn7w4J0gKTsWM,1718
@@ -505,16 +575,21 @@ maxframe/codegen/spe/dataframe/tests/indexing/test_sample.py,sha256=wl-tlYVXjLO0
505
575
  maxframe/codegen/spe/dataframe/tests/indexing/test_reset_index.py,sha256=W3tn9D5MSX2iJXycKVA4U_DPAvKg7OZCGynPaLRRB1k,3112
506
576
  maxframe/codegen/spe/dataframe/tests/indexing/test_getitem.py,sha256=T9bt9xIoxY1UfzWyE4J-nStnMSWdduNZMwEEAmm5XXA,4471
507
577
  maxframe/codegen/spe/dataframe/tests/indexing/test_setitem.py,sha256=SvmGRVtPSZEkcDw_HduPVxYJbnIpnTDTufuoH_7ZtOg,1707
508
- maxframe/codegen/spe/dataframe/tests/indexing/test_iloc.py,sha256=92BeKCQqrJjNQiKnYq4MNsy6aGeZ4RTIYAS2rJ8ooAk,2697
578
+ maxframe/codegen/spe/dataframe/tests/indexing/test_iloc.py,sha256=eVarsyzNULSI103dqCJxpGzMZYrcbj1dagiIIycGLtI,3334
509
579
  maxframe/codegen/spe/dataframe/tests/indexing/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
580
+ maxframe/codegen/spe/dataframe/tests/indexing/test_loc.py,sha256=xMzEnoITXossCOz54jhjEg6heXt_tF9i6JMUvs4opdg,1338
510
581
  maxframe/codegen/spe/dataframe/tests/indexing/test_indexing.py,sha256=vMn-cNJkV49M0Q4qjrJtVk2IjDFbcQCba3-kh8_Li0k,1447
511
582
  maxframe/codegen/spe/dataframe/tests/indexing/test_set_axis.py,sha256=R1NJFASCyGZN99BLs9hgVO4vt0SUxSrDOHz5mIg0Esw,1627
512
583
  maxframe/codegen/spe/dataframe/tests/indexing/test_rename.py,sha256=UmZ4J8YHWpwhxxiuLh8ozcZzrdKeuEM0dYCxkdgVIQo,1867
513
584
  maxframe/codegen/spe/dataframe/tests/indexing/test_set_index.py,sha256=3AXDlLRkUka3d-uOCc5a5gQienbogpm3QYi4T88PhO0,1457
514
585
  maxframe/codegen/spe/learn/__init__.py,sha256=8xMcRbU54OUaqauoxm9UNRo2C7hb418FQlsBpSZbXXU,650
515
586
  maxframe/codegen/spe/learn/metrics/_classification.py,sha256=41JuDrz5FNNRfyqKYUZnt9jL5AS3IxUTXlifEAGH7AU,4249
516
- maxframe/codegen/spe/learn/metrics/__init__.py,sha256=nV_oeSgrFfDu20Ig5-OAueMlxb1RoQKoSxwJWmWhwG0,627
587
+ maxframe/codegen/spe/learn/metrics/__init__.py,sha256=e1Ds1ImBCKZU3BLBooPHhbNq5y1AglrNR9NhDNgsZpM,647
588
+ maxframe/codegen/spe/learn/metrics/pairwise.py,sha256=UZhTfRpEURUhEQus5br88yP318kuA_oCUZRSoMYhzGo,1691
589
+ maxframe/codegen/spe/learn/metrics/_ranking.py,sha256=HrDl-XlgJuLqF8yJukP-NQi1CyV-hn0QZ3HqKNMlq40,2876
517
590
  maxframe/codegen/spe/learn/metrics/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
591
+ maxframe/codegen/spe/learn/metrics/tests/test_ranking.py,sha256=DHz8g4vYStHrWshf88ibFyN4HRkWft2Ab0tjUgs2yeI,1962
592
+ maxframe/codegen/spe/learn/metrics/tests/test_pairwise.py,sha256=1Ozu4EQsiCD35rD56vcSks2ocW9nF_egg6p4Jy7lDUg,1252
518
593
  maxframe/codegen/spe/learn/metrics/tests/test_classification.py,sha256=MUSoYOv322q0VhtpeolqtvADlSoc1aGKGw60t2fdiho,3368
519
594
  maxframe/codegen/spe/learn/utils/multiclass.py,sha256=h6aY2di1lKi0KQvTraT-V8JsGElS7LP5gyP4uLOgWgw,2433
520
595
  maxframe/codegen/spe/learn/utils/checks.py,sha256=qk4G5iz-aOaGNgg_WWdYaH6XrBJakE0NYi-maegBhic,2199
@@ -537,7 +612,7 @@ maxframe/codegen/spe/learn/contrib/tests/test_lightgbm.py,sha256=IZu3RvPjX9b2WYq
537
612
  maxframe/codegen/spe/learn/contrib/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
538
613
  maxframe/codegen/spe/learn/contrib/tests/test_pytorch.py,sha256=rt9-ZdT54J-l8cVv0KW3wofk4n17xMkYVRHDorhRMQ8,1564
539
614
  maxframe/codegen/spe/learn/contrib/tests/test_models.py,sha256=1AZDcmlzF6lOsTdqzx1teLfux7Q1DUsLSIE36B23Rfc,1362
540
- maxframe/codegen/spe/learn/contrib/tests/test_xgboost.py,sha256=QndQSDd44lTr7gvJ6BYHlduoGgT9kmUCe-aeHqJ14Dk,3620
615
+ maxframe/codegen/spe/learn/contrib/tests/test_xgboost.py,sha256=DrzDaZ6obrgiPYTTBoys1n550LF4lGIGxQUt44Roltk,3666
541
616
  maxframe/codegen/spe/learn/preprocessing/_data.py,sha256=AHuTCBMWKasNip7niwTSY0Fe_bPeQYH5a2j9SjI6xSk,1453
542
617
  maxframe/codegen/spe/learn/preprocessing/__init__.py,sha256=iADIZIGEYpEBk2jr2u5arkmGvFeF19tX8oCLMskYLOM,617
543
618
  maxframe/codegen/spe/learn/preprocessing/_label.py,sha256=eo2sUNegsBfLq_lPEql0HayWSDWX2vuDi8zwqkGjidI,1886
@@ -547,34 +622,38 @@ maxframe/codegen/spe/learn/preprocessing/tests/test_data.py,sha256=k0ZSooHYuRyxD
547
622
  maxframe/codegen/spe/learn/model_selection/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
548
623
  maxframe/codegen/spe/learn/model_selection/tests/test_split.py,sha256=Zc_5GBRY7c7AguBfLqcZU2Kk2GzeHJiLY5X3EbHMXuI,1664
549
624
  maxframe/codegen/spe/learn/model_selection/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
550
- maxframe/codegen/spe/tests/test_spe_codegen.py,sha256=ofe5sZE-hcPRn-4wrjgHqBJbWHPcL43-g-vth9zZdiU,4242
625
+ maxframe/codegen/spe/tests/test_spe_codegen.py,sha256=JCJ8qh9LEiqOKyAt_inRfRlV363XXUTRHVsaH78pPWE,4206
551
626
  maxframe/codegen/spe/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
552
627
  maxframe/codegen/spe/tests/test_remote.py,sha256=bYAjPUXrDme8rMHG93Kqktnbr7_vnGq2B89RtsR_i6A,1031
553
628
  maxframe/codegen/spe/tensor/fetch.py,sha256=sQQMwgVjFlPXoQ4bNpx2yl5hoOq2XPA1YvRcMIGNAwQ,1036
554
629
  maxframe/codegen/spe/tensor/arithmetic.py,sha256=ZCqagjY-D0q_0BMmi3r8rohaqyDSr4dh9OTcuECIZGM,3662
555
- maxframe/codegen/spe/tensor/misc.py,sha256=PFBuUyR1kooXMLJwiNTO_YDU74ruQ_9R8lLIVmjcKwQ,4062
630
+ maxframe/codegen/spe/tensor/misc.py,sha256=uXbdQLfb4-niXwuvd5QKAW9e9N6-omuAGXhnzfkSDWU,5925
556
631
  maxframe/codegen/spe/tensor/merge.py,sha256=2hM3dxFSFT3XXppz_6mB5FqEh9-NXEFQO8SJ_z_mQdc,1384
557
632
  maxframe/codegen/spe/tensor/reduction.py,sha256=UiO57E4nmlUKIDjxfnYWAiXu5hQTh3xFkHaalmJn9g4,1486
558
633
  maxframe/codegen/spe/tensor/sort.py,sha256=b55Ul7E6K74jlN7HH5eqf42iDC88llU2hOMhvhjaySs,1608
559
634
  maxframe/codegen/spe/tensor/reshape.py,sha256=mwU9FCQRZM5G6FkMa2O34gzAwaRnBboHUwVl0oH5YMg,869
560
- maxframe/codegen/spe/tensor/__init__.py,sha256=XXahbQNBEgCqa9n7ltv24Px8aO0JTX8TjnPyEgbaK60,774
635
+ maxframe/codegen/spe/tensor/__init__.py,sha256=JohxD-8dHm2d7S7s4ApDtGugHGY7eEQB5kip9nh7n5I,812
561
636
  maxframe/codegen/spe/tensor/core.py,sha256=VAktRFtN3Neap2PYFkDDOAca74LNAw_PSalsy9goM4I,1531
637
+ maxframe/codegen/spe/tensor/spatial.py,sha256=dCP8OSYHBnWbGHCiS7hk5SpbfRg64QFB2VfPro8pnK8,1389
562
638
  maxframe/codegen/spe/tensor/random.py,sha256=iAKwjv5dtOAcn5nKJZDnRga271vlMLdqJ6mPsR1cosU,1276
563
639
  maxframe/codegen/spe/tensor/datasource.py,sha256=2o3F3wy_A1FpjMEWWckVlAmimR5LLVog9XSNYLyxDlg,6250
564
640
  maxframe/codegen/spe/tensor/extensions.py,sha256=dvORRucZYf8higMgjZ2ru938XD9d_Fw0Waaj0l0fIm0,1509
565
- maxframe/codegen/spe/tensor/linalg.py,sha256=61Hwg6N35JIJ_OT1BvfAv5iiISPJYN3BMxpItoc4M6k,2281
566
- maxframe/codegen/spe/tensor/statistics.py,sha256=bAmugNENewXsXu4LuqyppyPmg3mp5KSXPj0WLf1msik,860
641
+ maxframe/codegen/spe/tensor/linalg.py,sha256=Tj0ddEcfnEkBPXsxk0LCB-XfkajBiRdDltS-detd6QM,3329
642
+ maxframe/codegen/spe/tensor/statistics.py,sha256=V9txDv0FWUiEPKCzDWPdnYEhloe0Kx7LqW3pYKd_HQ4,2399
643
+ maxframe/codegen/spe/tensor/fft.py,sha256=3C2c117ZnM_O2EGIbNWMeIIuriH3fE3BI66jchgxmvY,3366
567
644
  maxframe/codegen/spe/tensor/indexing.py,sha256=YIBUksWANMJmIfgyeZ7gMlbsRJHGu_a1Pt5ion1DevA,2349
568
645
  maxframe/codegen/spe/tensor/special.py,sha256=6kqD8m_h4yDnNswouogCNZZK9yaFoMquf_pTieZWyk4,1261
569
- maxframe/codegen/spe/tensor/tests/test_linalg.py,sha256=TjQmeyQPuztnhpTxMuc9G431uk7iArLcPXXsE9uvI_A,1406
570
- maxframe/codegen/spe/tensor/tests/test_statistics.py,sha256=w5CwfL_J_VB8TDcnpx085Vc017-6C7EF-z9ZUuL4yd8,1117
571
- maxframe/codegen/spe/tensor/tests/test_misc.py,sha256=urKFqDWfeVzpy6x0Gnl2ltZtsr-PvK5QubMQapvAkDU,3210
646
+ maxframe/codegen/spe/tensor/tests/test_linalg.py,sha256=SmJBKWPWquYvY9mJDrmjs22mo0Ndkgf3A0P55MSj2ec,1841
647
+ maxframe/codegen/spe/tensor/tests/test_statistics.py,sha256=rqgLnGOXN_8BqziP4BemZ2igZR0517br4wvcWPmBmQw,1535
648
+ maxframe/codegen/spe/tensor/tests/test_misc.py,sha256=SGg9vtM8GhvAwuH-IHrGYWucmnIuioOHzgzj_JtHHcc,4692
572
649
  maxframe/codegen/spe/tensor/tests/test_extensions.py,sha256=SumQwhUwGgJcNlgJjG3XNdDY-T1CuT71U2Rbgihl5R0,1389
650
+ maxframe/codegen/spe/tensor/tests/test_spatial.py,sha256=6B6t_H1vHMpTtzFb4fsWW30T3gZm6QrzERkv36K0x1w,1190
573
651
  maxframe/codegen/spe/tensor/tests/test_datasource.py,sha256=QucUPFBHc7Ywh3WB8Pd3_iZxuFCT4x88WyVvE-oF3hc,3374
574
652
  maxframe/codegen/spe/tensor/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
575
653
  maxframe/codegen/spe/tensor/tests/test_reshape.py,sha256=lLV0MXz3dQPf-sInJu852Ukbxd6l6OeTRb3g5FySImg,1465
576
654
  maxframe/codegen/spe/tensor/tests/test_sort.py,sha256=yUB2PILCrLKCgqqqJBIVTzI-MP2Ur5ZNOnvZRwSlBBo,1883
577
655
  maxframe/codegen/spe/tensor/tests/test_indexing.py,sha256=8fu26YNOltoCV3Vuho4-Ab_bd6AZSPitO181k9n2fEY,1481
656
+ maxframe/codegen/spe/tensor/tests/test_fft.py,sha256=pxE-f13-2SK9mqKpMw7HuFkwQOu4mtPatawkYRw4yhg,1988
578
657
  maxframe/codegen/spe/tensor/tests/test_reduction.py,sha256=xMh7TYFMY-V0FLovF1GNnaeRNtNmPXcKZVUEC6cxDF8,2032
579
658
  maxframe/codegen/spe/tensor/tests/test_merge.py,sha256=x4eI9Q1LRUtNUVT3LwLpe0MNFvyFV72-QuZXknYVOm8,1079
580
659
  maxframe/codegen/spe/tensor/tests/test_special.py,sha256=Y6L-gQ__scSeY66qDJph1ItvlTxpgGaZty8Xp8ihq8M,1051
@@ -582,12 +661,12 @@ maxframe/codegen/spe/tensor/tests/test_arithmetic.py,sha256=n7IBz3oyx5SuqlzKwScK
582
661
  maxframe/codegen/spe/tensor/tests/test_random.py,sha256=qKnK711XA1j99Oce4LB7IkTP7k2LF6W7fWG47S65LrY,1894
583
662
  maxframe/codegen/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
584
663
  maxframe/codegen/tests/test_codegen.py,sha256=TM6teK4idJIhEnnXuzUqjs745e01HtFNFlS2Eif2aac,2129
585
- maxframe/lib/wrapped_pickle.py,sha256=4qWVAbDcTJm4WAvs631fFXrV3NEyzGSnG1jSKHSzdv4,3836
664
+ maxframe/lib/wrapped_pickle.py,sha256=glzjMN210XPB4ZLMSzdhkPIy5Pl2Px6A6qp_yTgJTXc,4231
586
665
  maxframe/lib/version.py,sha256=krhgFvMhLdoNCJk3d9U-yyIAHixCR4S9-NggKdqrnHQ,18321
587
- maxframe/lib/compat.py,sha256=olFW2HW9-_ber1UbdH_RfpyGHpD5nwnp81VcX1ETwMo,4736
666
+ maxframe/lib/compat.py,sha256=mgMdAqDLcMBavAwbhRRN3CK5DsD3t8ORKxm4kYK_9JI,5811
588
667
  maxframe/lib/compression.py,sha256=QPxWRp0Q2q33EQzY-Jfx_iz7SELax6fu3GTmyIVyjGY,1442
589
668
  maxframe/lib/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
590
- maxframe/lib/mmh3.cpython-38-darwin.so,sha256=0nB9xMga2i5u3dzz1nUx2HpvHEdH7Ej-XsCq4a4AGOA,119784
669
+ maxframe/lib/mmh3.cpython-38-darwin.so,sha256=J77HHxuN-cRQ2gI2UcF6VCrTPzXzkr0kdwlAgJW_4Ks,119784
591
670
  maxframe/lib/mmh3.pyi,sha256=R_MzTIyUSTn8TF4Gs2hRP7NSWfWi0SeuUauh4eZJc-g,1494
592
671
  maxframe/lib/functools_compat.py,sha256=c3gOw--FLvQNbamt0V8oqsTNRhPlASPEOzhMrzA2was,2616
593
672
  maxframe/lib/mmh3_src/mmh3module.cpp,sha256=9J9eA42eKWTl546fvfQPNuIM3B2jpWSADpgIw3tr2jg,11604
@@ -611,22 +690,26 @@ maxframe/lib/filesystem/local.py,sha256=zAMnODenIQJH25txHZU7Uad6a6OksHwTOa-ngASc
611
690
  maxframe/lib/filesystem/arrow.py,sha256=FtzTJIJrCQEe48FpOsbBGg09bGpB_PoreZ0HlrrDkhg,8411
612
691
  maxframe/lib/filesystem/_glob.py,sha256=pUyuiKsdi7zS1xnrH0iJ2BHr2SIkYR52kc9K1tDMNsw,6535
613
692
  maxframe/lib/filesystem/__init__.py,sha256=mHRo2N1GXAXI-PbpUdsci2iahNWX3qiRzuAjCbsKzS4,834
614
- maxframe/lib/filesystem/core.py,sha256=vtTnBAPwB2nE1W2eQFDeVKZ--_kSFzbaHrBdqwXVvtg,2932
615
- maxframe/lib/filesystem/oss.py,sha256=8j8fjFVgQ_GYPNmJ6NmOnbPXQetOxtWroSkpEVe9aMI,5017
693
+ maxframe/lib/filesystem/core.py,sha256=8XHAOJuT1g4st7c7jQmmYNYKxEOhUPzA_Cd48du7wRk,2913
694
+ maxframe/lib/filesystem/oss.py,sha256=UOAHlsIcC5dIPGDm9XeOWDLX7M2YwbeKJnTqJgkVbPI,7592
616
695
  maxframe/lib/filesystem/fsmap.py,sha256=ZG_q-qjYBZ-U8LxAzNBFj27J5JKK4w4ffx80c1IiJzs,5262
617
696
  maxframe/lib/filesystem/hdfs.py,sha256=J4rAxSM4-D0OPJsoVrH1opl4UTAaKowa-V_q8PsF6Ys,1065
618
- maxframe/lib/filesystem/base.py,sha256=vUfv1bi5a6OR7hdiFS56KY6ANb8ddY2e783yLjFnXlI,6634
697
+ maxframe/lib/filesystem/base.py,sha256=okLzBco6o-utP6jwHuC6h-ohIPe6Q3h8haMxOePFB68,6599
619
698
  maxframe/lib/filesystem/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
620
699
  maxframe/lib/filesystem/tests/test_filesystem.py,sha256=-YxKI8WC_3h44aA_cur-iOL5ikZ4cfbi7Zg-JpNWGfQ,7372
621
- maxframe/lib/filesystem/tests/test_oss.py,sha256=ydFmp33W1TVzlnQel8TX3qVquGBZBJgJC7P_Ql1m_Bg,5894
622
- maxframe/lib/filesystem/_oss_lib/handle.py,sha256=EqXngu4ScEvEzWoVhk8SdcFHVd3ethXj9kpzQbtrJMY,4842
700
+ maxframe/lib/filesystem/tests/test_oss.py,sha256=P7hIZN4k-Qx4_HeXZaf3477OvvAWV4uL4D1RY-ydrpE,7460
701
+ maxframe/lib/filesystem/_oss_lib/handle.py,sha256=CU_BaFsP73pJ_LQ0-OQzX9HwTeeSxeP7Cy4xNP3ifU0,4901
623
702
  maxframe/lib/filesystem/_oss_lib/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
624
- maxframe/lib/filesystem/_oss_lib/glob.py,sha256=xlDbTJpZ4yMEI-Sul8U3PK9WR3hRIXxXagP2LcLH7Vs,4836
625
- maxframe/lib/filesystem/_oss_lib/common.py,sha256=zbhcqv_UKLHmk9cPT7T_9i43Uf2iz1DH_Uis8DJPOfs,6615
626
- maxframe/lib/dtypes_extension/__init__.py,sha256=xTGtTMm8c-h3lj3Bvbc2Oc08rScLfbrGkj-fkdRnTRM,671
627
- maxframe/lib/dtypes_extension/dtypes.py,sha256=LYZ8XK0C5Anpz0VgIElhNLF_QgbPDF3dbUfKEaIck-s,2153
703
+ maxframe/lib/filesystem/_oss_lib/glob.py,sha256=_7zX11xgVmX4dNnDk-XZ8nd91smqEqwM5GOcSuTou8Y,4834
704
+ maxframe/lib/filesystem/_oss_lib/common.py,sha256=88lCEK1XwoiH_TdSbmy_HfJ-t_OPdw7VYLq5aM9h0yw,8381
705
+ maxframe/lib/dtypes_extension/_fake_arrow_dtype.py,sha256=rzcydHCRZ4socbZNj8vq5rzeqXIQM3YzxiqpO7kgi-8,21559
706
+ maxframe/lib/dtypes_extension/__init__.py,sha256=EXlYo0fSTxxx26rloLctf4mOj0ioJgALAzMShApqIOY,855
707
+ maxframe/lib/dtypes_extension/dtypes.py,sha256=-5K26O3kyI0R7pdNTv5V_yc1K4ivQ2ibcQO3LTdkbMI,3161
708
+ maxframe/lib/dtypes_extension/blob.py,sha256=iqSnq6V6cM9eHu-yh7IbkTqi23E_IiAe62ZeADbwI1Q,8984
628
709
  maxframe/lib/dtypes_extension/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
629
- maxframe/lib/dtypes_extension/tests/test_dtypes.py,sha256=V2s_6SzMjam11la_92y0a3m-EZE4KQ34TY_7VSH8CEg,1378
710
+ maxframe/lib/dtypes_extension/tests/test_blob.py,sha256=sQjA3uwA4cfIU4Wx-RHESct-vHq0TwBKuqzEt5aENLs,3016
711
+ maxframe/lib/dtypes_extension/tests/test_fake_arrow_dtype.py,sha256=fDV6tM5-YXFJw1FeKZyhCLQQYZCPqdvgE_d-Os2yJCg,2642
712
+ maxframe/lib/dtypes_extension/tests/test_dtypes.py,sha256=NyXLNE8M_bSXV9OnrnqIFhHgqoXBhNWxAmc135hayhU,1808
630
713
  maxframe/lib/sparse/matrix.py,sha256=ure8NNTMIjyU74y35NgnOw5BjWADMPGnJBpJyrK2hCw,7194
631
714
  maxframe/lib/sparse/vector.py,sha256=1GQU5etr42YKZ4gyyvmd6h4RORQ7a6uh1w6Mdmp_geo,4763
632
715
  maxframe/lib/sparse/__init__.py,sha256=XZeVvlYpJXHOSwGvD_f5c2VYsN30je9ALwwIr2PkIps,17984
@@ -641,41 +724,68 @@ maxframe/lib/tblib/__init__.py,sha256=c4aVldbxJdS-bFsSDcmDQy_mW0qAcMrb4pHS2tjYhY
641
724
  maxframe/lib/tblib/cpython.py,sha256=FQ0f6WTQyQHoMRhgPqrA0y0Ygxlbj5IC53guxA4h9Cw,2418
642
725
  maxframe/lib/tblib/decorators.py,sha256=bcllK3kVuPnj6SNZGmlJGxTK0ovdt7TJDXrhA4UE5sQ,1063
643
726
  maxframe/tensor/array_utils.py,sha256=VsWQR84ifDV26-IfrgLRAXyt9FLZ2YAuKjQ6NKUqYv4,4373
644
- maxframe/tensor/__init__.py,sha256=Ac2Y3OyijuT8Nh1_52cy5-BqkMfOnzmJZ2A345CJq-g,5384
645
- maxframe/tensor/core.py,sha256=n6_vPx8SecSp9Wu2IGvhQiXfQ1ylqGs21jE43y3tqB0,17995
646
- maxframe/tensor/utils.py,sha256=iEzMffVfM64tFqH1EGldUoq8_q2xAPBBzsHFYy6ZDo8,22913
727
+ maxframe/tensor/__init__.py,sha256=HJT_9pbckWsejXTAxWGgZKAZsSe0YRsL32qP70ZOXwc,5736
728
+ maxframe/tensor/core.py,sha256=04tBUpe1N9n2P0EoSrIVFOMTVAA5fGsDyaTnGtAwgcQ,18038
729
+ maxframe/tensor/utils.py,sha256=v34SwG6pOgNH5kStDp5xI3sDlFDaDB6upFGmSuhy74I,22923
647
730
  maxframe/tensor/operators.py,sha256=EGWyiohMZXMgSOtFTVCvZ6IdQXwssxmoS1UVTI0wBKg,2257
731
+ maxframe/tensor/statistics/ptp.py,sha256=nOYV2g6RqAV4D2oM4rq66xNsceolz8rmBeLqv3lO5Sw,2776
648
732
  maxframe/tensor/statistics/quantile.py,sha256=uDVI-Z00MEF3kxd62H29MSxDU70Jpm579uxTx9ZE9ho,9547
649
- maxframe/tensor/statistics/__init__.py,sha256=RmBLkC-xfaN2sBIGvEO2mCBad3bTAI-FNIBwHuIQMGc,723
733
+ maxframe/tensor/statistics/histogram.py,sha256=hilMUR2g3QE_7uItxXq745nJh-nagMMQN6hxHRwO_OI,19493
734
+ maxframe/tensor/statistics/__init__.py,sha256=MyRRnGQ99_g63Oz7Iqi-rJscyD5Bo7iY8p3uu_CBOdI,908
735
+ maxframe/tensor/statistics/cov.py,sha256=rd9ZFHcqmB0DFM4HvPsv1N-irgTbdGo8j-YM0TYlASw,7610
736
+ maxframe/tensor/statistics/median.py,sha256=ohSSzDtHXqGGpkg3xE3hSABydGI5GFzO3Zw8qfXG274,3103
650
737
  maxframe/tensor/statistics/bincount.py,sha256=6d0MUbznEkc5fFVuUtHWdO4adsPBj5PnsBy3tnWA7jk,4711
738
+ maxframe/tensor/statistics/digitize.py,sha256=j8wCgJyl3sqPSpT45RpTxWzkxTJTETJ5eZLolXWo76g,4327
651
739
  maxframe/tensor/statistics/average.py,sha256=BT_rw1IEbJrdIS4mpEv_JJ2c4Mh0-uuucjRlwUIIzGc,5056
740
+ maxframe/tensor/statistics/corrcoef.py,sha256=mYIk577JOIWUJBLKapElnxdwAMLDlxI1k-No1bwajhs,2758
652
741
  maxframe/tensor/statistics/percentile.py,sha256=DMqIWDtCU012M-FILSgR1TmbLAgjRIzDCVK8qW8F58M,6047
653
742
  maxframe/tensor/reshape/reshape.py,sha256=wKYcB8ROlqbwPwqFqlCnN03YrquFuySQrYAiIx_RnrU,6557
654
743
  maxframe/tensor/reshape/__init__.py,sha256=_QbUbxl7S2TS7mKd2tGd_bB0a-40G18qW-OKuIqhNk4,626
655
744
  maxframe/tensor/reshape/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
656
745
  maxframe/tensor/reshape/tests/test_reshape.py,sha256=c1y2IM4yCn1W2ZF3UMWgU7Y7TgspyD5VDf7BJNxrj8A,1057
746
+ maxframe/tensor/misc/tile.py,sha256=yCmVbJ1c437Lpca3J2JkHVhvDwZdT4cDi1tXZ67yJ9I,3163
747
+ maxframe/tensor/misc/delete.py,sha256=ERj5WeBTENrehdV4BOzTFL2UYblLFiYpcOTZTHKYdQ8,3573
657
748
  maxframe/tensor/misc/setdiff1d.py,sha256=PpEaTq2fPz_9pqtzSGHEdWFLcTdM4nAyKeHwM4dA9rU,1753
658
749
  maxframe/tensor/misc/astype.py,sha256=NRUFbVmnpDefHcC_ZdVGPRNqLmjGg-_xCfwZPEtL9F0,4459
750
+ maxframe/tensor/misc/vsplit.py,sha256=6ZP9udHZ2Md20QUNZ4ZafoaGOo00HnI6GzZX9v-bIgw,2345
751
+ maxframe/tensor/misc/argwhere.py,sha256=NZGXoJ_gms7WtPumTMWdXrZyM26r3Yc81JfHE1tVcCE,1905
659
752
  maxframe/tensor/misc/flatten.py,sha256=gnVtVp6nOt4xmors2jQVk_2doRUsI_SsTk8YfpewbFA,1939
753
+ maxframe/tensor/misc/array_split.py,sha256=iHk0R0YjB6DWP5cCNxkyHiIndwfGTAnzki29Jnn4pKI,1589
754
+ maxframe/tensor/misc/copyto.py,sha256=jPdmMtEPGGxONq1ndbCaYwHiN4Y_KdXbLYlr3HfIFrQ,4381
660
755
  maxframe/tensor/misc/where.py,sha256=cODatKKVSVHLejJxS5iR6JFFtNVOrg7kqNKo3vrMvnQ,4084
661
756
  maxframe/tensor/misc/unique.py,sha256=oS4H4ftm9NuxdFP_pmWNstMr3vOArvNIUXAp0U4Yhv0,6804
662
- maxframe/tensor/misc/__init__.py,sha256=pX1rJVegGAnCHi01Qq1_lbPkPALhsNn6_JIccoAvTSk,1681
757
+ maxframe/tensor/misc/__init__.py,sha256=gr1SMUBJpamru-i6w-qu_PfNqr_9wVW_-FPaawG4d84,2449
663
758
  maxframe/tensor/misc/copy.py,sha256=Xjh-LFRd3_nbjldJiV4JTaRDSiMFxMSOkJxBU2uhfEc,1780
759
+ maxframe/tensor/misc/hsplit.py,sha256=EF3edzEBpKJsECbBgJ156b4dQFLqvmp5j9YSS3ZX7AU,2524
760
+ maxframe/tensor/misc/fliplr.py,sha256=KKDRuPixpkYQkpF3n3bZ_boPrgKiBq6eJpclzc6biws,1745
761
+ maxframe/tensor/misc/ediff1d.py,sha256=WgMhaujh6JfUViXgDyAexiSPKu1UDcb13VxgZVi6-R4,2096
762
+ maxframe/tensor/misc/dsplit.py,sha256=d4UoOS5ql0yzWsqm6s5gs4EMUIHtAxtCtezRmlrDjdM,2121
664
763
  maxframe/tensor/misc/isin.py,sha256=lUlmCqzyoCLCusglJk0iv38CNlS0fT-DnguW5sPjS-I,4476
665
764
  maxframe/tensor/misc/repeat.py,sha256=MD5zFUBkPLHoXFzQxmaJMWyJplmMMt3GwtNeGMi_A4Q,3919
666
765
  maxframe/tensor/misc/transpose.py,sha256=GHg1ohg6YKy2AuPAhYyMLHxyGUdfOWXuWZAccJmAwEk,4154
766
+ maxframe/tensor/misc/result_type.py,sha256=EPno4v_Snc12pZ2UsXCIflIyKoss-blPqAXd_pqGo0s,3043
767
+ maxframe/tensor/misc/expand_dims.py,sha256=myIb4nUcju7E6oPNx4ndv2K1DYLsCLGz-20-62ZxhbA,2302
768
+ maxframe/tensor/misc/split.py,sha256=pcHojBowSghUOEk-bEFTo8cetWwIp-yYslwTlokJ_Lg,6854
667
769
  maxframe/tensor/misc/in1d.py,sha256=tQgOlGq0W6tY8eGRHorUwWslBiDdfDGqithx8Eysnqc,3247
770
+ maxframe/tensor/misc/insert.py,sha256=C1HYwZDlEeW40nqdZ_bPYvcsHQeGMgao6Xt2gz8ezpg,4936
668
771
  maxframe/tensor/misc/swapaxes.py,sha256=ABQUhv5U6HBpRP4YTy3n1Sscoavsm4cR4aJQPnEu8sQ,3115
772
+ maxframe/tensor/misc/flip.py,sha256=PWR0uON149trqjgryQMSf1Gvv7xl6lgYKXUjMFGhZeA,2276
669
773
  maxframe/tensor/misc/diff.py,sha256=vuGCkudN-BC1GTVj1YcB4oi2E1DLx1BgWrqE1w9LYw0,3603
774
+ maxframe/tensor/misc/shape.py,sha256=GmTU1CaJbEhWdLUq5A_3vVh9AzD2Ilq9VcLANeIX_Q4,2388
670
775
  maxframe/tensor/misc/atleast_3d.py,sha256=unXlEgoYuHcnzkBSr8UXWlJI_yteoqb-HSPyx_eoVeo,2392
671
776
  maxframe/tensor/misc/trapezoid.py,sha256=gWNYFJBIZumc8IrcgeM0yoyDtbEcXJagyerKScmQV1s,3788
672
777
  maxframe/tensor/misc/searchsorted.py,sha256=uI0XdbmOPF4IQlpsn4MambP-3Ev67h_NsTjEWWyQcTc,4744
673
778
  maxframe/tensor/misc/ravel.py,sha256=5fyHLfBNBTIivLlK7SIwnOjaoVqG2pSiB68xt9a99YA,3127
779
+ maxframe/tensor/misc/flipud.py,sha256=FFA0ayrK_4o5Cad77y4a0ZE6GJ1JeiPyWTDkflSN9Cs,1799
674
780
  maxframe/tensor/misc/atleast_2d.py,sha256=sXuQvWy_uWd-wgax5psey5UhAR-4OT-QVzpf13aQqqY,1958
675
781
  maxframe/tensor/misc/broadcast_to.py,sha256=axolRo7v9MBRdRgNfLcKP2uCUgLNk2Ful0Xg2YyM8Fw,2692
782
+ maxframe/tensor/misc/broadcast_arrays.py,sha256=3pRJ4LT-Mmzr6llY3kH04QYMREse23JjpjffCzyj6eA,1659
783
+ maxframe/tensor/misc/roll.py,sha256=RP0PMXxz7W8BzmJqv4_MhLaKPj1P6NX_UsQc9ha-pTQ,3386
676
784
  maxframe/tensor/misc/ndim.py,sha256=RaB9DZ9P-JCqQYXGyuiJyRfrGHogTt9yv_xS-WqStaY,1389
785
+ maxframe/tensor/misc/moveaxis.py,sha256=XZsQfbZhdgs_pFwbOIlBf8mjcbR1U8puNHAryNEtQPE,2426
677
786
  maxframe/tensor/misc/atleast_1d.py,sha256=Za9A2LbW4TsVwmduh1Eh_bbk9JkyexewNitzm_zVH8s,1872
678
787
  maxframe/tensor/misc/squeeze.py,sha256=XywYcdpPg1PBR83CLmaQtxosk-2Aa390egRMpkzx8vQ,3570
788
+ maxframe/tensor/misc/rollaxis.py,sha256=XvnMrUEYDgQ1cx23NaOnPY5YEwWJVt2a7cQ6lVS0SfM,2225
679
789
  maxframe/tensor/misc/tests/test_misc.py,sha256=G8sRqbKou_tqBFuI8_ru8ObHp-iFRiAF_a0QPNFWjOU,2797
680
790
  maxframe/tensor/misc/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
681
791
  maxframe/tensor/datasource/from_dataframe.py,sha256=fahvjYmNUIKfWiMjGJg0mwkk8S1gUgnQPnXyLkVYNB4,2457
@@ -698,22 +808,32 @@ maxframe/tensor/datasource/from_sparse.py,sha256=zBkgvXQRb0ek4KpKDSgPXNbzPBsoVMK
698
808
  maxframe/tensor/datasource/identity.py,sha256=CVhDm0aFHSH8hxRIKF8uvJzoWygPOlBDS6CNPb77nlI,1677
699
809
  maxframe/tensor/datasource/tri_array.py,sha256=1OEiW8PGulIHY6D44Q68pi9NK2QtO-lOKRGwXz2xM_0,2918
700
810
  maxframe/tensor/datasource/ones.py,sha256=_hUZjNK16Hc16ERMCuWWvTWA03SB_APnJq6iLDjvnx4,5167
701
- maxframe/tensor/datasource/tests/test_datasource.py,sha256=0hEBAxtSM-JBhqO2FaAYjKSo89j4dRBWWfdfcvXEB8c,8660
811
+ maxframe/tensor/datasource/tests/test_datasource.py,sha256=S5ZN6ZCzRsCQN6U0VhQG7S9NcJgECn3Z7Tk_jwC2Ke8,8716
702
812
  maxframe/tensor/datasource/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
813
+ maxframe/tensor/linalg/matrix_norm.py,sha256=9ieQBfp5KutjYDr17JDkxTH0do3Nvmfn31SADXbVOyU,2322
703
814
  maxframe/tensor/linalg/matmul.py,sha256=EsaPI2ic0SFqmQpTwqOiBfRLmutp1fF7_xjSPJsBhlY,7113
704
815
  maxframe/tensor/linalg/inner.py,sha256=uFyvIh1_IMbQUex-gcjsBGD3YmisbrFAm-OlHdnohAo,1139
705
816
  maxframe/tensor/linalg/inv.py,sha256=umo55u-r5__85_XZjRECZ1KA5gQpwmbhGFE5-voJgt0,2463
706
- maxframe/tensor/linalg/__init__.py,sha256=pghIrKGKubLdVIYCSx3jfuDeWxeAcC3WMoNDyT0Ukrc,1174
817
+ maxframe/tensor/linalg/einsum.py,sha256=3fRm1MFhWWBP4Opla1pIzi17Z_xTvcbDkIHqV0rd43g,14333
818
+ maxframe/tensor/linalg/norm.py,sha256=_zu1Zqyz9ggGTXcZt6FHaOqCSgVKWLE7Me0cYPXcfg4,8694
819
+ maxframe/tensor/linalg/cholesky.py,sha256=l_NYrkHmgA33L1CXB8a639bmOu-v4x0XMdqpAt04Aso,3550
820
+ maxframe/tensor/linalg/__init__.py,sha256=XRjNQ4NuA6VFuXjG3rX5sfE9-ZypIlXQ0RL50pC1X0U,1421
707
821
  maxframe/tensor/linalg/svd.py,sha256=eNz1ooYTRWms9d3KfjBrE-Lg4T_l-ThgmHhYmaucNfQ,6144
708
822
  maxframe/tensor/linalg/vdot.py,sha256=0Gosg2jCXnrfH4dyVQ01ghX7FFJTZiemUSk-V0Si0uo,2249
709
823
  maxframe/tensor/linalg/tensordot.py,sha256=bJCBZCtyv6vfGQvEbh5mjHqD7p1mCOtMJL4E5M7wyuQ,7093
710
824
  maxframe/tensor/linalg/qr.py,sha256=cFoGviuRBCwFDbj3YcM2WVDG617AtvbsF7zvlIFrUQU,3739
825
+ maxframe/tensor/linalg/_einsumfunc.py,sha256=GOlv2O1EXXMq2n6q6LONE2UJ2nuyYV5OxxCA9wHd0GE,35387
711
826
  maxframe/tensor/linalg/lu.py,sha256=4ijWtGTr1iaHQcOJ2uxcL1DQYUSGTqk-Rap2pPQ1kQY,3204
712
- maxframe/tensor/linalg/solve_triangular.py,sha256=L3YY4iCa8e5YZu8TMeHNc_sWeI3-UjUE1AxzccBqPXI,3373
827
+ maxframe/tensor/linalg/solve_triangular.py,sha256=8W01pBGAkQIOxE_pVXUyc4rwtbhFsVbiPK2OdjPw89k,3401
828
+ maxframe/tensor/linalg/solve.py,sha256=PnUYnwglUhEgY9hbIFfllNM9sNU4hmL4HXCcB4dTNQg,2096
713
829
  maxframe/tensor/linalg/dot.py,sha256=jyYiPBLdprTDn_gbB31tt0TRH9yGLC0edeqkUkY8fV0,4649
830
+ maxframe/tensor/linalg/vector_norm.py,sha256=UX-ygFt04x_mJtGWg5-wZIxjiDSvxZFijWexLbHpqZ4,3624
831
+ maxframe/tensor/linalg/lstsq.py,sha256=Esz0A6RvifVeX024nbi4G3Q281bmARNwE8IIHJOtICU,3675
714
832
  maxframe/tensor/sort/argsort.py,sha256=7ALZVxxN8T9t3sk0fJBbqybiNgNU5Vilw2sfE-JTpnY,4887
833
+ maxframe/tensor/sort/partition.py,sha256=Rv5Il7hsFRCG1LS6UnOLwZm9-yB8ZlCaoqZsRGkucAA,7923
715
834
  maxframe/tensor/sort/sort.py,sha256=24Ghtpm2dot7mxtNtZy4zVMDsIqe0-PP4uesxPvPnuQ,11129
716
- maxframe/tensor/sort/__init__.py,sha256=Huqx9HhamXrck1mB20_7a9-NN4ujUtgEt1plMsR2y48,649
835
+ maxframe/tensor/sort/__init__.py,sha256=EkTa7CLzokDZDNoPz_wCCo4r0tPBupJCX5oFVgtWP00,721
836
+ maxframe/tensor/sort/argpartition.py,sha256=N--G94qTHLUaov8BU7EMd7uO2N0vfTruZua7nyIGnks,3478
717
837
  maxframe/tensor/rechunk/__init__.py,sha256=r4ae0JUXxgHnRFpIfoFNpNEiQ7oUne1vhE5Ebov2Qqs,797
718
838
  maxframe/tensor/rechunk/rechunk.py,sha256=VqOInL92Qd9u2dNyJRjGKt9sIQrMD6mrgNI2ucMGhO8,1392
719
839
  maxframe/tensor/merge/concatenate.py,sha256=B9ogoLIy3MfC1s4Y2fE9NeWXZOJcCuIhTzY_fmxFt70,3280
@@ -729,12 +849,21 @@ maxframe/tensor/merge/tests/test_merge.py,sha256=ef4Mh9ignZLj7LAbynl8dVE0D0M9xfT
729
849
  maxframe/tensor/ufunc/ufunc.py,sha256=mARoZbAO77fX1LuCVC_N62NE3PC4KIZO_D-mnw0WgsI,7137
730
850
  maxframe/tensor/ufunc/__init__.py,sha256=nroGEX4rm2eziyc2CMLDVw_u5bmDcy48cpNxiiEM7Qk,749
731
851
  maxframe/tensor/extensions/accessor.py,sha256=fW7h8TXFrzJrFsdJl-6hGit6oB3rlaSZmMdVvS_h_gY,818
732
- maxframe/tensor/extensions/apply_chunk.py,sha256=ONTfmespXTahBfdHtzk7EVVOew4n3XlXpwYLi4jh5vc,4420
733
- maxframe/tensor/extensions/__init__.py,sha256=mj6dzxSSwZPYNkVlNvvABp0OTFVJr8eRjroCSya-tm4,996
734
- maxframe/tensor/special/misc.py,sha256=iomWTcxhyEPVYSFiSWe0H2CKlKII-cEJxehBLHf4oPY,4489
852
+ maxframe/tensor/extensions/apply_chunk.py,sha256=GDnp_wpnK69VS-BVTk7Q4AMMXNV8qovdzm_oOCcaBVs,4463
853
+ maxframe/tensor/extensions/__init__.py,sha256=_Bcxr0dwJcydfYHJAMNHvHCJJ7vHcHnrCTxT0mYWtWY,1090
854
+ maxframe/tensor/extensions/rebalance.py,sha256=MBnZoGLKEc1VSFKB6uPKr1e-hzVg0HcNJ_8ufzw6SrU,2215
855
+ maxframe/tensor/special/hypergeometric_funcs.py,sha256=CsOKlrqXhuiqIbvWN9b1Yu1BPDdKzvvNPIe9FFChuA8,1999
856
+ maxframe/tensor/special/misc.py,sha256=e8SvdoTuOUd7jLuF_8WU_S7ZpF-XxxvIgxhbm2ObV-Y,5052
857
+ maxframe/tensor/special/ellip_harm.py,sha256=Ht-DCWisP0939HpUwOOoEZ8s9CEIWuGaORLCdMlMQzs,1724
735
858
  maxframe/tensor/special/statistical.py,sha256=WUCXm_1X9IeQWBdR2iH0mf3ZYe2Z8kU8yWNjvDM4QJA,1671
736
- maxframe/tensor/special/__init__.py,sha256=Onn9Qc5BHI52Ls0jIEjpaNUjTV8MQ1DkLb8I_93VxT0,1029
737
- maxframe/tensor/special/core.py,sha256=gs6HgKvAGvobX2fWIi1MbdB103BIU1aqR6DStWt2wiA,1217
859
+ maxframe/tensor/special/info_theory.py,sha256=K0mQ3rBcOa2RBFh03De2kwmtVM-W81qDdslFDPcJsMQ,5011
860
+ maxframe/tensor/special/ellip_func_integrals.py,sha256=gkIlNRVxiINhLYIpI3ibaBbwvlsuO0LXTLQBt364QbY,4135
861
+ maxframe/tensor/special/airy.py,sha256=3iRGjgfKv2p6vql1g1Jj9IjGOwsHjxRa1aB0_FTKfEk,1645
862
+ maxframe/tensor/special/err_fresnel.py,sha256=kXj7kfcLXGEVMM2RWGA9ZgSDlXDJqMLAgthtb_0ULHs,6054
863
+ maxframe/tensor/special/__init__.py,sha256=4FHizq2QSTL5c2bqgSF6nMFXVmoJeoPcPdocLtEq_xU,3874
864
+ maxframe/tensor/special/core.py,sha256=R5833J083ol0PO71g_Q5ScrxBMefChjpJdzcfVPqB-g,3107
865
+ maxframe/tensor/special/gamma_funcs.py,sha256=rQXPjR2yyvcpkXwzxtQZSYk86NXlLbayb-V633ZyeI4,8091
866
+ maxframe/tensor/special/bessel.py,sha256=oOtaXd_-28_21pBMRd4l9LjVoVwcvT_dlEXHSK4Jw8c,4824
738
867
  maxframe/tensor/fetch/__init__.py,sha256=m_wEDMVtz0FIx7kKCZJmGmPezsIYaYdxFjb8rIy1t5Q,647
739
868
  maxframe/tensor/fetch/core.py,sha256=hbrnZNgibYz-lA1Gk-RjWYArqdlpaSFSbbKYmYdaMj8,1818
740
869
  maxframe/tensor/reduction/nanprod.py,sha256=1J2CFf_Yu2p9K8K5eL6ukZSBBGA9E6BcjWDq3a_vTHU,3268
@@ -756,7 +885,7 @@ maxframe/tensor/reduction/min.py,sha256=U8CxvvpCiD_Vsb5tee56Y383VknbfbLIwetgx3hf
756
885
  maxframe/tensor/reduction/mean.py,sha256=_yOw9n1Y01VRgRmgI_UhZunF-xC0U0h1fWWNiV7RxM0,4333
757
886
  maxframe/tensor/reduction/var.py,sha256=c--5r9GNMHGSGqg_8HHKBvf5msFJ18gN-sL3CDEhFcY,6258
758
887
  maxframe/tensor/reduction/nanmax.py,sha256=XcFJ7MvSnGyROBX2hqN8pD01tCgdujsA1kFuUpq0G2U,3904
759
- maxframe/tensor/reduction/array_equal.py,sha256=SN26A9A2pXIqLOmOwb1MnDLBROh_krJcu3x_8DKsk6w,1749
888
+ maxframe/tensor/reduction/array_equal.py,sha256=LlrSbvFdkoI8fHg2Wxqw-RxqVcLI41bEVfFFrI_HbLg,1801
760
889
  maxframe/tensor/reduction/sum.py,sha256=h8M_VHFwLty9D_3_I8sgScb2Oy2H9BI_HBTlDN-hTp0,4200
761
890
  maxframe/tensor/reduction/prod.py,sha256=8J7aYKCgTr592Pp7IEAi-RIf7EZZFAph_iZ18_NoWAo,4360
762
891
  maxframe/tensor/reduction/cumsum.py,sha256=4uKptBW1MNakR2t4Ii9oyxLfQkd4RCWraiIPtCqqBMk,3445
@@ -778,6 +907,7 @@ maxframe/tensor/arithmetic/setimag.py,sha256=_p8BSQ4y7zA9FDycF4DpLfPz1BVwR88b7mg
778
907
  maxframe/tensor/arithmetic/signbit.py,sha256=uMmSAB1TRtIkBB6d7503k14Zp78kqiIsrBD4iZxRAHQ,2066
779
908
  maxframe/tensor/arithmetic/logical_and.py,sha256=EHR3E1T_AJVT04o00ZOeTkb9Dvw6q1NEs7VlpOHBrH4,2524
780
909
  maxframe/tensor/arithmetic/tanh.py,sha256=07lqmB0lGu-_2_yIV2-G0lP5UWPlVkNHZSGObqkqYUs,2999
910
+ maxframe/tensor/arithmetic/iscomplexobj.py,sha256=m0fGm2Ezfd6tEeV2eFGmjeiNYlEUjxlluC-p302TLhM,1480
781
911
  maxframe/tensor/arithmetic/isinf.py,sha256=gl-NNDe4LrR-i3cAKgQ6zKsyOlUPdiliNE4xsTl9tRU,3416
782
912
  maxframe/tensor/arithmetic/equal.py,sha256=7b6Q3pz4kJHAZIb8iyb78X-mXvJkZNhofMXsplip0mc,2347
783
913
  maxframe/tensor/arithmetic/nextafter.py,sha256=exajwOJGcMP_bEbccX2KmTRsEa7-i_XrVdW7vF3ATFI,2284
@@ -806,7 +936,7 @@ maxframe/tensor/arithmetic/logaddexp.py,sha256=GbgL9xONddcbWsrSoYgg9EiD8h72-Wi2y
806
936
  maxframe/tensor/arithmetic/modf.py,sha256=bB0uK8S9o2skU18odW5c-LhiDEudoG5EQcuxp8vUMaw,2680
807
937
  maxframe/tensor/arithmetic/abs.py,sha256=FUsZSFXWLcjtG8-oOX5gziCfFyD8nWeRjuxqJD-HI1c,2134
808
938
  maxframe/tensor/arithmetic/ldexp.py,sha256=HTf8DdLzwipB7mRWgdVAuiPI7k--27oNPpPUpsW3uPM,3119
809
- maxframe/tensor/arithmetic/__init__.py,sha256=A_GsabIOZAGSP8g5EY07gJoq83cprHEJtha2vchvU8E,9394
939
+ maxframe/tensor/arithmetic/__init__.py,sha256=oOGQM-a9LKRsMBnKvuuMBp6larK5mSnY5WLOACoj8sU,9714
810
940
  maxframe/tensor/arithmetic/divide.py,sha256=LWPQDOUP3SwqVDTVbbVEvLdntc6PkSRLRuVNw23GDh8,3664
811
941
  maxframe/tensor/arithmetic/float_power.py,sha256=gT-tz2mYU9XXwYtKoZg9Qrt4K-lXdMRAWcLGFu1dx3o,3318
812
942
  maxframe/tensor/arithmetic/logical_xor.py,sha256=yzSEB2nqOgpCbCUwQcsG-NdBwpgzuiCtbldUGKPyiP0,2844
@@ -868,9 +998,29 @@ maxframe/tensor/arithmetic/sin.py,sha256=zAI8inhDFTjS2i1PXbE2P3F-djXDP8TEJX1qLFq
868
998
  maxframe/tensor/arithmetic/reciprocal.py,sha256=XQpGtYw7LjpS6q6d6a4evmBqbT-FjvvcGh4jJqMkTCQ,2403
869
999
  maxframe/tensor/arithmetic/bitxor.py,sha256=TX1zzXoiEdjlDJKMu4m9kA0_a2ucCNIFTnGncbyOWwo,2863
870
1000
  maxframe/tensor/arithmetic/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
871
- maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=BGS-hwNO_SM5XXeW_RDSqkBeXfCjfEEh2sPiH2CkZqM,12559
1001
+ maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=npBoVVI9zYsUSEtRGmHIpAlkQykY7fZ58dYXwbb-Lto,12692
872
1002
  maxframe/tensor/lib/__init__.py,sha256=zna2_lR6uuQAuS0wBqg1EkC3V0eeHuJdCv4VEI-MFQw,658
873
1003
  maxframe/tensor/lib/index_tricks.py,sha256=BRRnjvaRAqJe95FTUDjYsmYM50ibvFzYcvnHEA_WB9E,14142
1004
+ maxframe/tensor/fft/fftshift.py,sha256=2Wng8VIPtyJZM9o1Pn7KXoZAllHslJlDufLQoXyeF6I,2389
1005
+ maxframe/tensor/fft/irfft.py,sha256=Scwffl3vPwdWnf_aGVKNNxDi_oE4G1IO1sLANM9FMhw,4576
1006
+ maxframe/tensor/fft/rfftfreq.py,sha256=bliqxTpoENlSfj3WFZOwn75MMV6T4wTFtxQf4bD6xsM,2953
1007
+ maxframe/tensor/fft/irfftn.py,sha256=Is7JIVrygjgSdJDWiwomHVHRldbDmFEXd25VmWCj7G0,4447
1008
+ maxframe/tensor/fft/ifft2.py,sha256=A8-CYyrqMTSwGUp9UCa1cfp5uDpG4EeYNSejzHAxE_M,4692
1009
+ maxframe/tensor/fft/ifftn.py,sha256=nh4Eqf5oYm1sRt_O4zoMWXv6pPdBOJXo29A2q6Fpxqg,4930
1010
+ maxframe/tensor/fft/ifftshift.py,sha256=5X-mi8o9rtuHkfv9OlKVIs4mAn6TAIto7WP6d62B6iM,2115
1011
+ maxframe/tensor/fft/ihfft.py,sha256=b9lmL3Xz26YF6Ds9CAuQw3nfOTlDVH-yyeuwqkiOT9s,3248
1012
+ maxframe/tensor/fft/irfft2.py,sha256=Xkaq-dglA2Elib88_bl58VlG7YTmoShqPcVA72v-Y7E,1892
1013
+ maxframe/tensor/fft/__init__.py,sha256=7zP8W7ryCCWCysWMu1iH58JR3bki-I1cCdevBEYhH1g,1302
1014
+ maxframe/tensor/fft/core.py,sha256=PHeIoJlJjfAHRA5CkmlX4zmO2y3aBe402khISr7mPf0,4490
1015
+ maxframe/tensor/fft/fft2.py,sha256=KjrvwMEQ_BJsyNh3L42c9U0lM9QecjOC39NKjBnUNGo,4730
1016
+ maxframe/tensor/fft/rfft2.py,sha256=3o0h8o7Nhh8Ou-cHF2GsdLTg5076NPsPpm9B-Iv53GI,1933
1017
+ maxframe/tensor/fft/rfft.py,sha256=Mz0ZyN9L6suv5ijRYBT1xk8NevTOzGXL5AhfLYidjZk,4360
1018
+ maxframe/tensor/fft/ifft.py,sha256=8OoVf_hH6Jcngb5tANeFilStHiF3xQ2JLtKHIRrJWZA,4138
1019
+ maxframe/tensor/fft/fftfreq.py,sha256=akYYdRynhkwe-ZUE-iZLY6cDEFIeYZ7FBtKTzRaj7z4,2634
1020
+ maxframe/tensor/fft/fft.py,sha256=m_9y61ScJTymjk0ViRmGyEuRzVKQa3CukN6gKXKWDXM,4165
1021
+ maxframe/tensor/fft/rfftn.py,sha256=g_wnnhCdqgEXuzDHdnpMfpJleNok7-QX1Cz8Ix2W9q4,4293
1022
+ maxframe/tensor/fft/fftn.py,sha256=y_60M1GSopmN3rmecUZCEeS25O4YhOlO_L8WwOFjiK8,4811
1023
+ maxframe/tensor/fft/hfft.py,sha256=X2uT2BVfYN1FQByX5qghhaOGxKmz5prLIZAqm2MLaOM,3977
874
1024
  maxframe/tensor/indexing/choose.py,sha256=nV6P_z3kp4sVpGjPNXPE5S6U68b7KR7_GMc3zBoFcng,7644
875
1025
  maxframe/tensor/indexing/nonzero.py,sha256=ng4axHH0IkIvSHkrUZ3t8sGz5F0TKn5TyigRVohgOKI,3493
876
1026
  maxframe/tensor/indexing/slice.py,sha256=NptsH__F5Qq8mOTwgTR7RejXj8h_FufsIBUknbfqcNQ,1130
@@ -880,7 +1030,7 @@ maxframe/tensor/indexing/getitem.py,sha256=Vb7mxlo0j_FVj967FPkP9dsuN0GSdhj_TjnE2
880
1030
  maxframe/tensor/indexing/core.py,sha256=evzxbwfrgFLkkO2_itP2C_hfhY4qyrKOhZTfLCIK7BM,7022
881
1031
  maxframe/tensor/indexing/unravel_index.py,sha256=jZDkGk-0rPfAJ32QCPIDeHcNh24DSEPswaDL36A_FD0,3273
882
1032
  maxframe/tensor/indexing/flatnonzero.py,sha256=TYWx70TFKzDaJOuq-IN94_VXuBHZd4qDCk0QvQNLQmY,1592
883
- maxframe/tensor/indexing/fill_diagonal.py,sha256=66UpYKsQLIPfQGvyFD9XRVtcp0b3kxqU_9WSYcfXAwI,5396
1033
+ maxframe/tensor/indexing/fill_diagonal.py,sha256=0cfVGIJm1lahmmf1hECTN04P4KQfkNmS7MZHRH7HmUg,5258
884
1034
  maxframe/tensor/indexing/take.py,sha256=Ho3w4K0vMP3FpnwjrY-TSz7BgdxkU73g3ORU-FUTLjk,4208
885
1035
  maxframe/tensor/indexing/compress.py,sha256=8wnffG8iYOPP9MVux7FKfDXB8-M_LYiS11-PzhdKPbQ,3983
886
1036
  maxframe/tensor/indexing/extract.py,sha256=Kr3upYT2ollrwOK1UlvkYG4FmJnTMt2NSSZ1ThV4ldU,2022
@@ -934,6 +1084,11 @@ maxframe/tensor/random/wald.py,sha256=VWTdrW458HLYR_KXBwK9ryTIYc5J9GxBaW3Nwa3xnV
934
1084
  maxframe/tensor/random/binomial.py,sha256=ItnWUoDDGNQuuquEP0KfzANnj1Uh5wPc3NLnjcXRZjY,5245
935
1085
  maxframe/tensor/random/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
936
1086
  maxframe/tensor/random/tests/test_random.py,sha256=Ff6SPeT-aSQI1KSqH0QfJ3NBQsqYYQ3FNMjIo7z3LOM,4229
1087
+ maxframe/tensor/spatial/__init__.py,sha256=2n0j20avW6i9t7H4aVnhh0uC9x94V9q486mNId_UY-Q,620
1088
+ maxframe/tensor/spatial/distance/squareform.py,sha256=_UVtbWESGsMOxsdue_B8JwRpvi6CXBfW9S5Xdmgzigg,5393
1089
+ maxframe/tensor/spatial/distance/cdist.py,sha256=cCRbMhpWIMxND6NiETFbAG47yngCXD0BVp5pXmLzxY0,13863
1090
+ maxframe/tensor/spatial/distance/__init__.py,sha256=VmcPC8eNOPLics8_w25yJBa11o5Vu4UD8SzhegOelGo,682
1091
+ maxframe/tensor/spatial/distance/pdist.py,sha256=JkaKUplXBBgyzf3n7h4QwRvNlaz1eUj4ECrBm2NGAbE,12751
937
1092
  maxframe/remote/run_script.py,sha256=M7g1ZorfEdzH_8fPA4Rcv821UJZ5dD9vgtYA7JAMf_g,3651
938
1093
  maxframe/remote/__init__.py,sha256=EBfizOWJqWnsbhR6nOom9-TUSuGF7t6C6Hfrt9eP3V4,729
939
1094
  maxframe/remote/core.py,sha256=FX_XVQB0uz27JMmjCiN48mBiklGXI9peAq39aX51cko,6551