如何在 ggplot 堆积条形图中给 y 轴一个 table 的总行数?

How to give y axis the total number of rows of a table in ggplot stacked bar?

我正在使用 GGPLOT 创建堆叠条形图,其中 y 轴应为电影总数,x 轴应为年份,填充应为国家/地区。

到目前为止我已经尝试过了,但是 Y 轴给出了一个不规则的数字:

ggplot(IMDB, aes(fill=country,y=nrow(IMDB), x=year)) 
 + geom_bar(position="stack", stat="identity")

Table 样本:

year   country
2002   Germany
1998   USA
1955   Italy

也许试试:

ggplot(IMDB, aes(fill=country, x=year)) 
 + geom_bar(position="stack")

geom_bar 将给出每个国家/地区每年的电影数量。

是您要找的吗?