如何在R中绘制大量数据

问题描述 投票:1回答:1

我有一个需要绘制的数据框。问题是它太大,无法正确显示该图,并且我无法分析任何条形图。该图也不可缩放。

我正在使用的代码如下:

ggplot(grafE,aes(x=Estados,y=Freq)) + 
geom_bar(stat="identity",fill="Red") +
coord_flip() +
ylab("Numero de casos") + xlab("Estados") + 
geom_text(aes(x = Estados,   y = Freq+30, label = Freq))

对于相当少量的数据,该图看起来很完美。就像这样:

https://i.imgur.com/GlJ58w0.png

但是那对于更大的数据量来说是一团糟。

https://i.imgur.com/nI3qCoO.png

如何为大量数据创建美观的条形图或至少清晰的条形图?

r bar-chart
1个回答
1
投票
ggp <- ggplot(grafE,aes(x=Estados,y=Freq)) + geom_bar(stat="identity",fill="Red") + coord_flip() + ylab("Numero de casos") + xlab("Estados") + geom_text(aes(x = Estados, y = Freq+30, label = Freq)) library{plotly}; #required package. ggp %>% ggplotly; # then check in the viewer
© www.soinside.com 2019 - 2024. All rights reserved.