aboutsummaryrefslogtreecommitdiff
path: root/python
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-15189][PYSPARK][DOCS] Update ml.evaluation PyDocHolden Karau2016-05-111-1/+12
* [SPARK-15250][SQL] Remove deprecated json API in DataFrameReaderhyukjinkwon2016-05-101-2/+2
* [SPARK-15261][SQL] Remove experimental tag from DataFrameReader/WriterReynold Xin2016-05-101-5/+9
* [SPARK-14936][BUILD][TESTS] FlumePollingStreamSuite is slowXin Ren2016-05-101-1/+1
* [SPARK-15195][PYSPARK][DOCS] Update ml.tuning PyDocsHolden Karau2016-05-101-1/+15
* [SPARK-14603][SQL] Verification of Metadata Operations by Session Cataloggatorsmile2016-05-101-0/+2
* [SPARK-15136][PYSPARK][DOC] Fix links to sphinx style and add a default param...Holden Karau2016-05-095-25/+40
* [SPARK-14050][ML] Add multiple languages support and additional methods for S...Burak Köse2016-05-062-16/+29
* [SPARK-15106][PYSPARK][ML] Add PySpark package doc for ML component & remove ...Holden Karau2016-05-051-0/+4
* [MINOR] remove dead codeDavies Liu2016-05-041-9/+0
* [SPARK-14896][SQL] Deprecate HiveContext in pythonAndrew Or2016-05-043-4/+9
* [SPARK-15031][EXAMPLE] Use SparkSession in Scala/Python/Java example.Dongjoon Hyun2016-05-041-0/+5
* [SPARK-15126][SQL] RuntimeConfig.set should return UnitReynold Xin2016-05-042-4/+0
* [SPARK-15084][PYTHON][SQL] Use builder pattern to create SparkSession in PySp...Dongjoon Hyun2016-05-031-1/+90
* [SPARK-9819][STREAMING][DOCUMENTATION] Clarify doc for invReduceFunc in incre...François Garillot2016-05-031-1/+3
* [SPARK-14716][SQL] Added support for partitioning in FileStreamSinkTathagata Das2016-05-031-2/+2
* [SPARK-14971][ML][PYSPARK] PySpark ML Params setter code clean upYanbo Liang2016-05-0310-219/+110
* [SPARK-15050][SQL] Put CSV and JSON options as Python csv and json function p...hyukjinkwon2016-05-021-77/+155
* [SPARK-13425][SQL] Documentation for CSV datasource optionshyukjinkwon2016-05-011-0/+52
* [SPARK-14931][ML][PYTHON] Mismatched default values between pipelines in Spar...Xusen Yin2016-05-015-12/+62
* [SPARK-14952][CORE][ML] Remove methods that were deprecated in 1.6.0Herman van Hovell2016-04-302-19/+0
* [SPARK-13289][MLLIB] Fix infinite distances between word vectors in Word2VecM...Junyang2016-04-301-7/+8
* [SPARK-14412][.2][ML] rename *RDDStorageLevel to *StorageLevel in ml.ALSXiangrui Meng2016-04-302-40/+40
* [SPARK-14412][ML][PYSPARK] Add StorageLevel params to ALSNick Pentreath2016-04-292-5/+80
* [SPARK-13786][ML][PYTHON] Removed save/load for python tuningJoseph K. Bradley2016-04-292-262/+21
* [SPARK-15012][SQL] Simplify configuration API furtherAndrew Or2016-04-293-33/+4
* [SPARK-14988][PYTHON] SparkSession API follow-upsAndrew Or2016-04-295-209/+228
* [SPARK-11940][PYSPARK][ML] Python API for ml.clustering.LDA PR2Jeff Zhang2016-04-292-2/+543
* [SPARK-14988][PYTHON] SparkSession catalog and conf APIAndrew Or2016-04-294-85/+605
* [SPARK-14829][MLLIB] Deprecate GLM APIs using SGDZheng RuiFeng2016-04-282-0/+25
* [SPARK-14555] Second cut of Python API for Structured StreamingBurak Yavuz2016-04-285-46/+217
* [SPARK-12810][PYSPARK] PySpark CrossValidatorModel should support avgMetricsKai Jiang2016-04-282-8/+37
* [SPARK-14945][PYTHON] SparkSession Python APIAndrew Or2016-04-286-240/+585
* [SPARK-14899][ML][PYSPARK] Remove spark.ml HashingTF hashingAlg optionYanbo Liang2016-04-272-36/+14
* [SPARK-9656][MLLIB][PYTHON] Add missing methods to PySpark's Distributed Line...Mike Dusenberry2016-04-272-3/+299
* [SPARK-14732][ML] spark.ml GaussianMixture should use MultivariateGaussian in...Joseph K. Bradley2016-04-261-7/+4
* [SPARK-14903][SPARK-14071][ML][PYTHON] Revert : MLWritable.write propertyJoseph K. Bradley2016-04-262-8/+1
* [SPARK-11559][MLLIB] Make `runs` no effect in mllib.KMeansYanbo Liang2016-04-262-9/+5
* [SPARK-14721][SQL] Remove HiveContext (part 2)Andrew Or2016-04-251-1/+2
* [SPARK-10574][ML][MLLIB] HashingTF supports MurmurHash3Yanbo Liang2016-04-252-9/+33
* [MINOR][ML][PYTHON][DOC] Remove use of JavaMLWriter/Reader in public Python A...Joseph K. Bradley2016-04-251-4/+4
* [SPARK-14433][PYSPARK][ML] PySpark ml GaussianMixturewm624@hotmail.com2016-04-251-1/+145
* [SPARK-14768][ML][PYSPARK] removed expectedType from Param __init__()Jason Lee2016-04-251-8/+1
* Support single argument version of sqlContext.getConfmathieu longtin2016-04-231-3/+17
* [SPARK-13266] [SQL] None read/writer options were not transalated to "null"Liang-Chi Hsieh2016-04-222-3/+9
* [SPARK-14739][PYSPARK] Fix Vectors parser bugsArash Parsa2016-04-212-8/+14
* [SPARK-13842] [PYSPARK] pyspark.sql.types.StructType accessor enhancementsSheamus K. Parkes2016-04-202-9/+58
* [MINOR][ML][PYSPARK] Fix omissive params which should use TypeConverterYanbo Liang2016-04-202-4/+5
* [MINOR][ML][PYSPARK] Fix omissive param setters which should use _set methodYanbo Liang2016-04-201-2/+2
* [SPARK-14555] First cut of Python API for Structured StreamingBurak Yavuz2016-04-2016-29/+378