[R] Label

Jim Lemon drj|m|emon @end|ng |rom gm@||@com
Fri Apr 3 04:37:48 CEST 2020


Hi Val,

library(plotrix)
barpos<-barplot(dat$count, names.arg=c("A", "B", "C","D"),
         col="blue",
         ylim = c(0,30),
         ylab = "Count",
         xlab = "Grade")
barlabels(barpos,dat$count,prop=1)

Jim

On Fri, Apr 3, 2020 at 1:31 PM Val <valkremk using gmail.com> wrote:
>
> Hi all,
>
> I have a sample of data set,
>
> dat <- read.table(header=TRUE, text='Lab count
> A 24
> B 19
> C 30
> D 18')
>
> barplot(dat$count, names.arg=c("A", "B", "C","D"),
>         col="blue",
>         ylim = c(0,30),
>         ylab = "Count",
>         xlab = "Grade")
>
> I want add the number of counts at the top of each bar plot. How can I do that?
> Thank you in advance
>
> ______________________________________________
> R-help using r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.



More information about the R-help mailing list