spark-instrumented-optimizer/python/pyspark/ml/param
Yanbo Liang d26f7cb012 [SPARK-14971][ML][PYSPARK] PySpark ML Params setter code clean up
## What changes were proposed in this pull request?
PySpark ML Params setter code clean up.
For examples,
```setInputCol``` can be simplified from
```
self._set(inputCol=value)
return self
```
to:
```
return self._set(inputCol=value)
```
This is a pretty big sweeps, and we cleaned wherever possible.
## How was this patch tested?
Exist unit tests.

Author: Yanbo Liang <ybliang8@gmail.com>

Closes #12749 from yanboliang/spark-14971.
2016-05-03 16:46:13 +02:00
..
__init__.py [SPARK-14768][ML][PYSPARK] removed expectedType from Param __init__() 2016-04-25 15:32:11 +02:00
_shared_params_code_gen.py [SPARK-14971][ML][PYSPARK] PySpark ML Params setter code clean up 2016-05-03 16:46:13 +02:00
shared.py [SPARK-14971][ML][PYSPARK] PySpark ML Params setter code clean up 2016-05-03 16:46:13 +02:00