Skip to content

Commit

Permalink
Swtiched default scatterplot3js symbol to disc instead of sphere
Browse files Browse the repository at this point in the history
More efficient for large numbers of points--a more conservative default
  • Loading branch information
bwlewis committed Jun 30, 2017
1 parent 4224215 commit 644d872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/scatterplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ scatterplot3js <- function(
x <- list(na.omit(x))
}
NROW <- nrow(x[[1]])
if (missing(pch)) pch <- rep("o", NROW)
if (missing(pch)) pch <- rep("@", NROW)
if (length(pch) != NROW) pch <- rep_len(pch, NROW)
renderer <- match.arg(renderer)

Expand Down

0 comments on commit 644d872

Please sign in to comment.