Skip to content

Commit

Permalink
Add imports; needed to pass R-devel check
Browse files Browse the repository at this point in the history
  • Loading branch information
jcheng5 committed Jul 27, 2015
1 parent 3b93b45 commit c18377d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
4 changes: 3 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ Imports:
htmlwidgets,
png,
base64enc,
dendextend (>= 0.18.0)
dendextend (>= 0.18.0),
stats,
grDevices
Suggests:
shiny,
knitr
Expand Down
10 changes: 10 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,13 @@ export(renderD3heatmap)
import(base64enc)
import(htmlwidgets)
import(png)
importFrom(grDevices,col2rgb)
importFrom(grDevices,rgb)
importFrom(stats,as.dendrogram)
importFrom(stats,dendrapply)
importFrom(stats,dist)
importFrom(stats,hclust)
importFrom(stats,is.leaf)
importFrom(stats,order.dendrogram)
importFrom(stats,reorder)
importFrom(stats,sd)
2 changes: 2 additions & 0 deletions R/d3heatmap.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#' @import htmlwidgets
#' @importFrom grDevices col2rgb rgb
#' @importFrom stats as.dendrogram dendrapply dist hclust is.leaf order.dendrogram reorder sd
NULL

`%||%` <- function(a, b) {
Expand Down

0 comments on commit c18377d

Please sign in to comment.