@harry wrote:
I am currently studying about visualisation in R using ggplot2 packages while studying it I came across a code in which plotting is done with the help of ggplot.
library(ggplot2) intl = read.csv("intl.csv") str(intl) ggplot(intl, aes(x=Region, y=PercentOfIntl)) + geom_bar(stat="identity") + geom_text(aes(label=PercentOfIntl))
I want to know what does stat means in the code.
Posts: 1
Participants: 1