I have a dot plot:
Done using lattice dotplot()
of my resamples()
list. How do I display the values of each plot?
(my code is just dotplot(resamples(list()))
.
I have a dot plot:
Done using lattice dotplot()
of my resamples()
list. How do I display the values of each plot?
(my code is just dotplot(resamples(list()))
.
It is very difficult without an example, but try this:
p <- dotplot(resamples(list()))
p
trellis.focus("panel",1,1)
panel.text(x=p$panel.args[[1]]$x,y=p$panel.args[[1]]$y,labels = *point_values*, pos=3, cex=0.5, col="red")
trellis.unfocus()