aboutsummaryrefslogtreecommitdiff
path: root/R/pkg/NAMESPACE
diff options
context:
space:
mode:
authorFelix Cheung <felixcheung_m@hotmail.com>2016-08-22 15:53:10 -0700
committerFelix Cheung <felixcheung@apache.org>2016-08-22 15:53:10 -0700
commit71afeeea4ec8e67edc95b5d504c557c88a2598b9 (patch)
tree20d6ea5bf24625983414503731210a794b826fd5 /R/pkg/NAMESPACE
parent84770b59f773f132073cd2af4204957fc2d7bf35 (diff)
downloadspark-71afeeea4ec8e67edc95b5d504c557c88a2598b9.tar.gz
spark-71afeeea4ec8e67edc95b5d504c557c88a2598b9.tar.bz2
spark-71afeeea4ec8e67edc95b5d504c557c88a2598b9.zip
[SPARK-16508][SPARKR] doc updates and more CRAN check fixes
## What changes were proposed in this pull request? replace ``` ` ``` in code doc with `\code{thing}` remove added `...` for drop(DataFrame) fix remaining CRAN check warnings ## How was this patch tested? create doc with knitr junyangq Author: Felix Cheung <felixcheung_m@hotmail.com> Closes #14734 from felixcheung/rdoccleanup.
Diffstat (limited to 'R/pkg/NAMESPACE')
-rw-r--r--R/pkg/NAMESPACE6
1 files changed, 5 insertions, 1 deletions
diff --git a/R/pkg/NAMESPACE b/R/pkg/NAMESPACE
index e1b87b28d3..709057675e 100644
--- a/R/pkg/NAMESPACE
+++ b/R/pkg/NAMESPACE
@@ -1,5 +1,9 @@
# Imports from base R
-importFrom(methods, setGeneric, setMethod, setOldClass)
+# Do not include stats:: "rpois", "runif" - causes error at runtime
+importFrom("methods", "setGeneric", "setMethod", "setOldClass")
+importFrom("methods", "is", "new", "signature", "show")
+importFrom("stats", "gaussian", "setNames")
+importFrom("utils", "download.file", "packageVersion", "untar")
# Disable native libraries till we figure out how to package it
# See SPARKR-7839