I am looking for a way to add labels, i.e. absolute values, into a stacked bar chart using the basic plot functions of R. The labels should be inside the stacked bars.
How about the simple function text()?
text()
You can simply add a string where ever you want, eg:
text (x = ..., y = ..., labels = c("foo bar 1000"))