Skip to content

Commit

Permalink
smaller cutoff for long labels
Browse files Browse the repository at this point in the history
  • Loading branch information
dicook committed Jul 4, 2024
1 parent 3822a8a commit 061708a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/display-xy.r
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ draw_tour_axes <- function(proj, labels, limits=1, position="center",
col = axis.col, lwd = axis.lwd)
if (longlabels) {
for (i in 1:length(labels)) {
if ((proj[i, 1]^2 + proj[i, 2]^2) < 0.3)
if ((proj[i, 1]^2 + proj[i, 2]^2) < 0.15)
labels[i] <- ""
}
}
Expand Down

0 comments on commit 061708a

Please sign in to comment.