Skip to content

Commit 061708a

Browse files
committed
smaller cutoff for long labels
1 parent 3822a8a commit 061708a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/display-xy.r

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ draw_tour_axes <- function(proj, labels, limits=1, position="center",
320320
col = axis.col, lwd = axis.lwd)
321321
if (longlabels) {
322322
for (i in 1:length(labels)) {
323-
if ((proj[i, 1]^2 + proj[i, 2]^2) < 0.3)
323+
if ((proj[i, 1]^2 + proj[i, 2]^2) < 0.15)
324324
labels[i] <- ""
325325
}
326326
}

0 commit comments

Comments
 (0)