Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ importFrom(grid,vpList)
importFrom(grid,vpPath)
importFrom(grid,vpTree)
importFrom(plyr,ddply)
importFrom(plyr,llply)
importFrom(psych,describe)
importFrom(psych,describeBy)
importFrom(stats,cor)
Expand Down
4 changes: 2 additions & 2 deletions R/align.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ align.plots <- function(gl, ...) {

gtable_gList <- function (x) {
names <- with(x$layout, paste(name, t, l, sep = "-"))
grobs <- llply(seq_along(names), function(i) {
grobs <- lapply(seq_along(names), function(i) {
editGrob(x$grobs[[i]], vp = vpPath(x$name, names[i]),
name = names[i])
})
Expand All @@ -61,7 +61,7 @@ align.plots <- function(gl, ...) {
layout.pos.row = vp$t:vp$b, layout.pos.col = vp$l:vp$r,
clip = vp$clip)
}
children_vp <- do.call("vpList", llply(seq_along(x$grobs),
children_vp <- do.call("vpList", lapply(seq_along(x$grobs),
vp))
vpTree(layout_vp, children_vp)
}
Expand Down
1 change: 0 additions & 1 deletion R/likert-package.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
#' @importFrom grDevices colorRamp rgb
#' @importFrom graphics hist lines pairs par rect strwidth symbols text
#' @importFrom stats cor cor.test density sd symnum
#' @importFrom plyr llply
#' @importFrom utils packageVersion
"_PACKAGE"

Expand Down