I cannot find a way to assign datapoints to stripchart . Using the text function, as suggested in this question , breaks when points are folded or trembling.
I have numerical data in 4 categories (columns 2-5) and I would like to mark each datapoint with initials (column 1).
This is my data and the code I tried:
initials,total,interest,slides,presentation CU,1.6,1.7,1.5,1.6 DS,1.6,1.7,1.5,1.7 VA,1.7,1.5,1.5,2.1 MB,2.3,2.0,2.1,2.9 HS,1.2,1.3,1.4,1.0 LS,1.8,1.8,1.5,2.0 stripchart(CTscores[-1], method = "stack", las = 1) text(CTscores$total + 0.05, 1, labels = CTscores$name, cex = 0.5)
The plot below is the best I've managed so far. As you can see, data point labels overlap. In addition, the longest y mark is disabled.

Is it possible to mark points on a strip chart? Or do I need to display this with another command in order to enable marking?