Skip to content

Commit

Permalink
fixed #30
Browse files Browse the repository at this point in the history
  • Loading branch information
mtennekes committed Mar 22, 2016
1 parent 7b80543 commit 0224354
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/R/treemap.R
Expand Up @@ -442,7 +442,6 @@ treemap <-
args <- list(...)
args$na.rm <- TRUE


###########
## prepare data for aggregation
###########
Expand All @@ -458,7 +457,7 @@ treemap <-
vColor <- "vColor.temp"
vColorX <- 1
dtfDT[, vColor.temp:=1]
setcolorder(dtfDT, c(1:(ncol(dtfDT)-2), ncol(dtfDT), ncol(dtfDT)-1))
setcolorder(dtfDT, c(1:(ncol(dtfDT)-3), ncol(dtfDT), ncol(dtfDT)-2, ncol(dtfDT)-1))
}

indexList <- paste0("index", 1:depth)
Expand Down

0 comments on commit 0224354

Please sign in to comment.