Skip to content

Commit c366fd6

Browse files
committed
Merge branch 'master' into SPARK-9679-python-StopWordsRemover
2 parents 12fb73e + de7209c commit c366fd6

File tree

479 files changed

+13710
-4691
lines changed

Some content is hidden

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

479 files changed

+13710
-4691
lines changed

R/create-docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pushd $FWDIR
3939
mkdir -p pkg/html
4040
pushd pkg/html
4141

42-
Rscript -e 'library(SparkR, lib.loc="../../lib"); library(knitr); knit_rd("SparkR")'
42+
Rscript -e 'libDir <- "../../lib"; library(SparkR, lib.loc=libDir); library(knitr); knit_rd("SparkR", links = tools::findHTMLlinks(paste(libDir, "SparkR", sep="/")))'
4343

4444
popd
4545

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.4.0
4+
Version: 1.5.0
55
Date: 2013-09-09
66
Author: The Apache Software Foundation
77
Maintainer: Shivaram Venkataraman <[email protected]>

R/pkg/NAMESPACE

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ exportClasses("Column")
8484

8585
exportMethods("abs",
8686
"acos",
87+
"add_months",
8788
"alias",
8889
"approxCountDistinct",
8990
"asc",
@@ -101,12 +102,17 @@ exportMethods("abs",
101102
"ceil",
102103
"ceiling",
103104
"concat",
105+
"concat_ws",
104106
"contains",
107+
"conv",
105108
"cos",
106109
"cosh",
107110
"count",
108111
"countDistinct",
109112
"crc32",
113+
"date_add",
114+
"date_format",
115+
"date_sub",
110116
"datediff",
111117
"dayofmonth",
112118
"dayofyear",
@@ -115,16 +121,23 @@ exportMethods("abs",
115121
"exp",
116122
"explode",
117123
"expm1",
124+
"expr",
118125
"factorial",
119126
"first",
120127
"floor",
128+
"format_number",
129+
"format_string",
130+
"from_unixtime",
131+
"from_utc_timestamp",
121132
"getField",
122133
"getItem",
123134
"greatest",
124135
"hex",
125136
"hour",
126137
"hypot",
138+
"ifelse",
127139
"initcap",
140+
"instr",
128141
"isNaN",
129142
"isNotNull",
130143
"isNull",
@@ -135,11 +148,13 @@ exportMethods("abs",
135148
"levenshtein",
136149
"like",
137150
"lit",
151+
"locate",
138152
"log",
139153
"log10",
140154
"log1p",
141155
"log2",
142156
"lower",
157+
"lpad",
143158
"ltrim",
144159
"max",
145160
"md5",
@@ -152,15 +167,26 @@ exportMethods("abs",
152167
"n_distinct",
153168
"nanvl",
154169
"negate",
170+
"next_day",
171+
"otherwise",
155172
"pmod",
156173
"quarter",
174+
"rand",
175+
"randn",
176+
"regexp_extract",
177+
"regexp_replace",
157178
"reverse",
158179
"rint",
159180
"rlike",
160181
"round",
182+
"rpad",
161183
"rtrim",
162184
"second",
163185
"sha1",
186+
"sha2",
187+
"shiftLeft",
188+
"shiftRight",
189+
"shiftRightUnsigned",
164190
"sign",
165191
"signum",
166192
"sin",
@@ -170,18 +196,23 @@ exportMethods("abs",
170196
"sqrt",
171197
"startsWith",
172198
"substr",
199+
"substring_index",
173200
"sum",
174201
"sumDistinct",
175202
"tan",
176203
"tanh",
177204
"toDegrees",
178205
"toRadians",
179206
"to_date",
207+
"to_utc_timestamp",
208+
"translate",
180209
"trim",
181210
"unbase64",
182211
"unhex",
212+
"unix_timestamp",
183213
"upper",
184214
"weekofyear",
215+
"when",
185216
"year")
186217

187218
exportClasses("GroupedData")

0 commit comments

Comments
 (0)