Skip to content

Commit

Permalink
Update visualisation_matrix.data.frame.R
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Jan 23, 2022
1 parent 88492d7 commit 0163714
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/visualisation_matrix.data.frame.R
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ visualisation_matrix.data.frame <- function(x, at = "all", target = NULL, factor
} else if (is.list(target)) {

# we have a list as at-values
facs <- target[sapply(target, is.factor)]
nums <- target[sapply(target, is.numeric)]
facs <- target[sapply(x[names(target)], is.factor)]
nums <- target[sapply(x[names(target)], is.numeric)]
}

# Assemble the two - the goal is to have two named lists, where variable
Expand Down

0 comments on commit 0163714

Please sign in to comment.