We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3536fe7 commit e6f2a81Copy full SHA for e6f2a81
R/plotly_build.R
@@ -98,6 +98,8 @@ plotly_build.plotly <- function(p) {
98
})
99
dataArrayAttrs <- names(Attrs)[as.logical(isArray)]
100
tr <- trace[names(trace) %in% c(npscales(), special_attrs(trace), dataArrayAttrs)]
101
+ # TODO: does it make sense to "train" matrices/2D-tables (e.g. z)?
102
+ tr <- tr[vapply(tr, function(x) is.null(dim(x)), logical(1))]
103
builtData <- tibble::as_tibble(tr)
104
105
# avoid clobbering I() (i.e., variables that shouldn't be scaled)
0 commit comments