Skip to content

Commit 3f78459

Browse files
committed
rebase with trunk
2 parents abe5da1 + 89b9434 commit 3f78459

File tree

586 files changed

+17664
-5085
lines changed

Some content is hidden

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

586 files changed

+17664
-5085
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: 84 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ exportMethods("arrange",
4747
"join",
4848
"limit",
4949
"merge",
50+
"mutate",
51+
"na.omit",
5052
"names",
5153
"ncol",
5254
"nrow",
5355
"orderBy",
54-
"mutate",
55-
"names",
5656
"persist",
5757
"printSchema",
5858
"rbind",
@@ -82,59 +82,139 @@ exportMethods("arrange",
8282

8383
exportClasses("Column")
8484

85-
exportMethods("abs",
85+
exportMethods("%in%",
86+
"abs",
8687
"acos",
88+
"add_months",
8789
"alias",
8890
"approxCountDistinct",
8991
"asc",
92+
"ascii",
9093
"asin",
9194
"atan",
9295
"atan2",
9396
"avg",
97+
"base64",
9498
"between",
99+
"bin",
100+
"bitwiseNOT",
95101
"cast",
96102
"cbrt",
103+
"ceil",
97104
"ceiling",
105+
"concat",
106+
"concat_ws",
98107
"contains",
108+
"conv",
99109
"cos",
100110
"cosh",
111+
"count",
101112
"countDistinct",
113+
"crc32",
114+
"date_add",
115+
"date_format",
116+
"date_sub",
117+
"datediff",
118+
"dayofmonth",
119+
"dayofyear",
102120
"desc",
103121
"endsWith",
104122
"exp",
123+
"explode",
105124
"expm1",
125+
"expr",
126+
"factorial",
127+
"first",
106128
"floor",
129+
"format_number",
130+
"format_string",
131+
"from_unixtime",
132+
"from_utc_timestamp",
107133
"getField",
108134
"getItem",
135+
"greatest",
136+
"hex",
137+
"hour",
109138
"hypot",
139+
"ifelse",
140+
"initcap",
141+
"instr",
142+
"isNaN",
110143
"isNotNull",
111144
"isNull",
112145
"last",
146+
"last_day",
147+
"least",
148+
"length",
149+
"levenshtein",
113150
"like",
151+
"lit",
152+
"locate",
114153
"log",
115154
"log10",
116155
"log1p",
156+
"log2",
117157
"lower",
158+
"lpad",
159+
"ltrim",
118160
"max",
161+
"md5",
119162
"mean",
120163
"min",
164+
"minute",
165+
"month",
166+
"months_between",
121167
"n",
122168
"n_distinct",
169+
"nanvl",
170+
"negate",
171+
"next_day",
172+
"otherwise",
173+
"pmod",
174+
"quarter",
175+
"rand",
176+
"randn",
177+
"regexp_extract",
178+
"regexp_replace",
179+
"reverse",
123180
"rint",
124181
"rlike",
182+
"round",
183+
"rpad",
184+
"rtrim",
185+
"second",
186+
"sha1",
187+
"sha2",
188+
"shiftLeft",
189+
"shiftRight",
190+
"shiftRightUnsigned",
125191
"sign",
192+
"signum",
126193
"sin",
127194
"sinh",
195+
"size",
196+
"soundex",
128197
"sqrt",
129198
"startsWith",
130199
"substr",
200+
"substring_index",
131201
"sum",
132202
"sumDistinct",
133203
"tan",
134204
"tanh",
135205
"toDegrees",
136206
"toRadians",
137-
"upper")
207+
"to_date",
208+
"to_utc_timestamp",
209+
"translate",
210+
"trim",
211+
"unbase64",
212+
"unhex",
213+
"unix_timestamp",
214+
"upper",
215+
"weekofyear",
216+
"when",
217+
"year")
138218

139219
exportClasses("GroupedData")
140220
exportMethods("agg")

0 commit comments

Comments
 (0)