i've been struggling plot shows data accurately, , spent while getting gap.plot , running. after doing so, have issue labelling points. just plotting data ends this: plot of abundance data, 2 different tiers of data @ ~38,000, , between 1 - 50 as can see, doesn't show either top or bottom sections of plots enough distinguish anything. using gap plot, managed get: gap.plot of abundance data, 100 - 37000 missed, labels appearing on lower tier the code 2 plots pretty simple: plot(counts.abund1,pch=".",main= "repeat 1") text(counts.abund1, labels=row.names(counts.abund1), cex= 1.5) gap.plot(counts.abund1[,1],counts.abund1[,2],gap=c(100,38000),gap.axis="y",xlim=c(0,60),ylim=c(0,39000)) text(counts.abund1, labels=row.names(counts.abund1), cex= 1.5) but don't know why/can't figure out why labels (which letters points denote) not being applied same in 2 plots. i'm kind of out of depth trying bit, little idea how p...