我的直方图中只有一个bin。我怎样才能以更多的箱子转换它?
我想将附加图片中的图表2转换为类似图1的内容,这样我就会看到更多的垃圾箱。
编辑:
完成hist(df$FutureCost,main="Multicare Distribution of charges", xlab="Charge($)",breaks="FD",xlim=c(0,500000))
后,我能够获得更好的图表。感谢回复。如何将数字1e + 05,2e + 05等转换为数字,如100000,200000等。
答案 0 :(得分:0)
基于上述评论的完整(但不可重复/可测试)解决方案,有些尝试重现ggplot风格......
opar <- options(scipen=100)
par(bg="gray") ## set plot background color
hist(df$FutureCost,
main="Multicare Distribution of charges",
xlab="Charge($)",
breaks="FD",
xlim=c(0,500000),col="black")
grid(col="white") ## plots on top of histogram; re-plot
## histogram if you like ...
par(opar) ## restore original settings