spark-instrumented-optimizer/python/pyspark/ml/stat.pyi
Huaxin Gao f3548837c6 [SPARK-34080][ML][PYTHON] Add UnivariateFeatureSelector
### What changes were proposed in this pull request?
Add UnivariateFeatureSelector

### Why are the changes needed?
Have one UnivariateFeatureSelector, so we don't need to have three Feature Selectors.

### Does this PR introduce _any_ user-facing change?
Yes
```
selector = UnivariateFeatureSelector(featureCols=["x", "y", "z"], labelCol=["target"], featureType="categorical", labelType="continuous", selectorType="numTopFeatures",  numTopFeatures=100)
```

Or

numTopFeatures
```
selector = UnivariateFeatureSelector(featureCols=["x", "y", "z"], labelCol=["target"], scoreFunction="f_classif", selectorType="numTopFeatures",  numTopFeatures=100)
```

### How was this patch tested?
Add Unit test

Closes #31160 from huaxingao/UnivariateSelector.

Authored-by: Huaxin Gao <huaxing@us.ibm.com>
Signed-off-by: Weichen Xu <weichen.xu@databricks.com>
2021-01-16 11:09:23 +08:00

78 lines
2.8 KiB
Python

#
# 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 typing import Optional
from pyspark.ml.linalg import Matrix, Vector
from pyspark.ml.wrapper import JavaWrapper
from pyspark.sql.column import Column
from pyspark.sql.dataframe import DataFrame
from py4j.java_gateway import JavaObject # type: ignore[import]
class ChiSquareTest:
@staticmethod
def test(
dataset: DataFrame, featuresCol: str, labelCol: str, flatten: bool = ...
) -> DataFrame: ...
class Correlation:
@staticmethod
def corr(dataset: DataFrame, column: str, method: str = ...) -> DataFrame: ...
class KolmogorovSmirnovTest:
@staticmethod
def test(
dataset: DataFrame, sampleCol: str, distName: str, *params: float
) -> DataFrame: ...
class Summarizer:
@staticmethod
def mean(col: Column, weightCol: Optional[Column] = ...) -> Column: ...
@staticmethod
def sum(col: Column, weightCol: Optional[Column] = ...) -> Column: ...
@staticmethod
def variance(col: Column, weightCol: Optional[Column] = ...) -> Column: ...
@staticmethod
def std(col: Column, weightCol: Optional[Column] = ...) -> Column: ...
@staticmethod
def count(col: Column, weightCol: Optional[Column] = ...) -> Column: ...
@staticmethod
def numNonZeros(col: Column, weightCol: Optional[Column] = ...) -> Column: ...
@staticmethod
def max(col: Column, weightCol: Optional[Column] = ...) -> Column: ...
@staticmethod
def min(col: Column, weightCol: Optional[Column] = ...) -> Column: ...
@staticmethod
def normL1(col: Column, weightCol: Optional[Column] = ...) -> Column: ...
@staticmethod
def normL2(col: Column, weightCol: Optional[Column] = ...) -> Column: ...
@staticmethod
def metrics(*metrics: str) -> SummaryBuilder: ...
class SummaryBuilder(JavaWrapper):
def __init__(self, jSummaryBuilder: JavaObject) -> None: ...
def summary(
self, featuresCol: Column, weightCol: Optional[Column] = ...
) -> Column: ...
class MultivariateGaussian:
mean: Vector
cov: Matrix
def __init__(self, mean: Vector, cov: Matrix) -> None: ...