R语言可视化——直方图及其美化技巧!

2020-06-16 00:00:00 数据 参数 变量 颜色 直方图

数据集仍然使用上一节使用到的有关钻石的数据信息。

data(diamonds)
set.seed(42)
small <- diamonds[sample(nrow(diamonds), 1000), ]
head(small)

相关文章