本文介绍的 代码示例 可用于使用 r 编程 语言中的 ggplot2 包创建多条密度曲线或绘图 。如果我遗漏了一个或多个要点,请随时发表评论/建议。
带有 ggplot 的多密度曲线/图形
下面给出的代码示例适用于作为 ggplot2 包 的一部分加载的“钻石”数据集。以下是下面显示的两种不同类型的图:
- 具有多个填充的密度图
- 单填充密度图
具有多个填充的密度图
以下代码表示具有多个填充的密度图。注意传递给“aes”方法的“fill”参数。
# create density plots for single variable filtered by fill condition
# in example below, fill is assigned to cut
ggplot(diamonds, aes(x=carat, fill=cut)) + geom_density() +
labs(title="density plot", x="carat")
单填充密度图
# create density plots for single variable filtered by fill condition
# in example below, fill is assigned to cut
ggplot(diamonds, aes(x=carat, fill=cut)) + geom_density() +
labs(title="density plot", x="carat")