Skip to content

Commit 601a9ea

Browse files
committed
Merge branch 'master' into SPARK-11937-SPARK-11922-Python-API-for-ml.feature.QuantileDiscretizer
2 parents 2afd197 + 932cf44 commit 601a9ea

767 files changed

Lines changed: 21794 additions & 9334 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.rat-excludes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,6 @@ INDEX
8282
gen-java.*
8383
.*avpr
8484
org.apache.spark.sql.sources.DataSourceRegister
85+
org.apache.spark.scheduler.SparkHistoryListenerFactory
8586
.*parquet
87+
LZ4BlockInputStream.java

LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
Apache License
32
Version 2.0, January 2004
43
http://www.apache.org/licenses/
@@ -237,7 +236,7 @@ The following components are provided under a BSD-style license. See project lin
237236
The text of each license is also included at licenses/LICENSE-[project].txt.
238237

239238
(BSD 3 Clause) netlib core (com.github.fommil.netlib:core:1.1.2 - https://github.com/fommil/netlib-java/core)
240-
(BSD 3 Clause) JPMML-Model (org.jpmml:pmml-model:1.1.15 - https://github.com/jpmml/jpmml-model)
239+
(BSD 3 Clause) JPMML-Model (org.jpmml:pmml-model:1.2.7 - https://github.com/jpmml/jpmml-model)
241240
(BSD 3-clause style license) jblas (org.jblas:jblas:1.2.4 - http://jblas.org/)
242241
(BSD License) AntLR Parser Generator (antlr:antlr:2.7.7 - http://www.antlr.org/)
243242
(BSD licence) ANTLR ST4 4.0.4 (org.antlr:ST4:4.0.4 - http://www.stringtemplate.org)

NOTICE

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,4 +606,11 @@ Vis.js uses and redistributes the following third-party libraries:
606606

607607
- keycharm
608608
https://github.com/AlexDM0/keycharm
609-
The MIT License
609+
The MIT License
610+
611+
===============================================================================
612+
613+
The CSS style for the navigation sidebar of the documentation was originally
614+
submitted by Óscar Nájera for the scikit-learn project. The scikit-learn project
615+
is distributed under the 3-Clause BSD license.
616+
===============================================================================

R/pkg/.lintr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
linters: with_defaults(line_length_linter(100), camel_case_linter = NULL, open_curly_linter(allow_single_line = TRUE), closed_curly_linter(allow_single_line = TRUE))
1+
linters: with_defaults(line_length_linter(100), camel_case_linter = NULL, open_curly_linter(allow_single_line = TRUE), closed_curly_linter(allow_single_line = TRUE), commented_code_linter = NULL)
22
exclusions: list("inst/profile/general.R" = 1, "inst/profile/shell.R")

R/pkg/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: SparkR
22
Type: Package
33
Title: R frontend for Spark
4-
Version: 1.6.0
4+
Version: 2.0.0
55
Date: 2013-09-09
66
Author: The Apache Software Foundation
77
Maintainer: Shivaram Venkataraman <[email protected]>

R/pkg/NAMESPACE

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ exportMethods("arrange",
9292
"with",
9393
"withColumn",
9494
"withColumnRenamed",
95-
"write.df")
95+
"write.df",
96+
"write.json",
97+
"write.parquet")
9698

9799
exportClasses("Column")
98100

@@ -134,8 +136,10 @@ exportMethods("%in%",
134136
"datediff",
135137
"dayofmonth",
136138
"dayofyear",
139+
"decode",
137140
"dense_rank",
138141
"desc",
142+
"encode",
139143
"endsWith",
140144
"exp",
141145
"explode",
@@ -225,6 +229,7 @@ exportMethods("%in%",
225229
"stddev",
226230
"stddev_pop",
227231
"stddev_samp",
232+
"struct",
228233
"sqrt",
229234
"startsWith",
230235
"substr",
@@ -264,9 +269,11 @@ export("as.DataFrame",
264269
"createExternalTable",
265270
"dropTempTable",
266271
"jsonFile",
272+
"read.json",
267273
"loadDF",
268274
"parquetFile",
269275
"read.df",
276+
"read.parquet",
270277
"sql",
271278
"table",
272279
"tableNames",

0 commit comments

Comments
 (0)