/
githubmirror
/
spark
Обзор
Документация
Войти
/
githubmirror
/
spark
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
python/pyspark/pandas/missing/groupby.py
90 строк
3 KB
Devin Petersohn
[SPARK-40336][PS] Implement DataFrameGroupBy.cov
11 май 2026, 00:54
11 май 2026, 00:54
7041d1e
Код
Авторство
О чём код?
# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # from pyspark.pandas.missing import unsupported_function, unsupported_property def _unsupported_function(method_name, deprecated=False, reason=""): return unsupported_function( class_name="pd.groupby.GroupBy", method_name=method_name, deprecated=deprecated, reason=reason, ) def _unsupported_property(property_name, deprecated=False, reason=""): return unsupported_property( class_name="pd.groupby.GroupBy", property_name=property_name, deprecated=deprecated, reason=reason, ) class MissingPandasLikeDataFrameGroupBy: # NOTE: Please update the pandas-on-Spark reference document when implementing the new API. # Documentation path: `python/docs/source/reference/pyspark.pandas/`. # Properties corrwith = _unsupported_property("corrwith") dtypes = _unsupported_property("dtypes") groups = _unsupported_property("groups") hist = _unsupported_property("hist") indices = _unsupported_property("indices") ngroups = _unsupported_property("ngroups") plot = _unsupported_property("plot") # Deprecated properties take = _unsupported_property("take", deprecated=True) # Functions boxplot = _unsupported_function("boxplot") ngroup = _unsupported_function("ngroup") ohlc = _unsupported_function("ohlc") pct_change = _unsupported_function("pct_change") pipe = _unsupported_function("pipe") resample = _unsupported_function("resample") class MissingPandasLikeSeriesGroupBy: # NOTE: Please update the pandas-on-Spark reference document when implementing the new API. # Documentation path: `python/docs/source/reference/pyspark.pandas/`. # Properties corr = _unsupported_property("corr") cov = _unsupported_property("cov") dtype = _unsupported_property("dtype") groups = _unsupported_property("groups") hist = _unsupported_property("hist") indices = _unsupported_property("indices") is_monotonic_decreasing = _unsupported_property("is_monotonic_decreasing") is_monotonic_increasing = _unsupported_property("is_monotonic_increasing") ngroups = _unsupported_property("ngroups") plot = _unsupported_property("plot") # Deprecated properties take = _unsupported_property("take", deprecated=True) # Functions agg = _unsupported_function("agg") aggregate = _unsupported_function("aggregate") ngroup = _unsupported_function("ngroup") ohlc = _unsupported_function("ohlc") pct_change = _unsupported_function("pct_change") pipe = _unsupported_function("pipe") resample = _unsupported_function("resample")