Skip to content

Commit f49e231

Browse files
committed
change tags from 1.7 to 1.6
1 parent a5e72ad commit f49e231

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

python/pyspark/ml/feature.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2116,7 +2116,7 @@ class ChiSqSelector(JavaEstimator, HasFeaturesCol, HasOutputCol, HasLabelCol):
21162116
>>> model.transform(df).collect()[2].selectedFeatures
21172117
DenseVector([0.1])
21182118
2119-
.. versionadded:: 1.7.0
2119+
.. versionadded:: 1.6.0
21202120
"""
21212121

21222122
# a placeholder to make it appear in the generated doc
@@ -2142,7 +2142,7 @@ def __init__(self, numTopFeatures=50, featuresCol="features", outputCol=None, la
21422142
self.setParams(**kwargs)
21432143

21442144
@keyword_only
2145-
@since("1.7.0")
2145+
@since("1.6.0")
21462146
def setParams(self, numTopFeatures=50, featuresCol="features", outputCol=None,
21472147
labelCol="labels"):
21482148
"""
@@ -2153,15 +2153,15 @@ def setParams(self, numTopFeatures=50, featuresCol="features", outputCol=None,
21532153
kwargs = self.setParams._input_kwargs
21542154
return self._set(**kwargs)
21552155

2156-
@since("1.7.0")
2156+
@since("1.6.0")
21572157
def setNumTopFeatures(self, value):
21582158
"""
21592159
Sets the value of :py:attr:`numTopFeatures`.
21602160
"""
21612161
self._paramMap[self.numTopFeatures] = value
21622162
return self
21632163

2164-
@since("1.7.0")
2164+
@since("1.6.0")
21652165
def getNumTopFeatures(self):
21662166
"""
21672167
Gets the value of numTopFeatures or its default value.
@@ -2178,7 +2178,7 @@ class ChiSqSelectorModel(JavaModel):
21782178
21792179
Model fitted by ChiSqSelector.
21802180
2181-
.. versionadded:: 1.7.0
2181+
.. versionadded:: 1.6.0
21822182
"""
21832183

21842184

0 commit comments

Comments
 (0)