本文介绍了如何在R中覆盖密度图?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在同一设备上用R覆盖2个密度图.我该怎么做?我在网上搜索,但没有找到任何明显的解决方案(我对R相当陌生).

I would like to overlay 2 density plots on the same device with R. How can I do that? I searched the web but I didnt find any obvious solution (I am rather new to R).

我的想法是从文本文件(列)中读取数据,然后使用

My idea would be to read data from a text file (columns) and then use

plot(density(MyData$Column1))
plot(density(MyData$Column2), add=T)

本着这种精神……

预先感谢

推荐答案

第二个使用lines:

plot(density(MyData$Column1))
lines(density(MyData$Column2))

不过,请确保第一幅图的界限合适.

make sure the limits of the first plot are suitable, though.

这篇关于如何在R中覆盖密度图?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 15:40