我的数据看起来像this。
我打算在每个曲线的每个曲线中创建多个密度曲线 对应于唯一ID。
我尝试使用“sm”包,使用此代码,但没有成功。
library(sm)
dat <- read.table("mydat.txt");
plotfn <- ("~/Desktop/flowgram_superimposed.pdf");
pdf(plotfn);
sm.density.compare(dat$V1,dat$V2, xlab = "Flow Signal")
colfill <- c(2:10);
legend(locator(1), levels(dat$V2), fill=colfill)
dev.off();
请告知正确的方法是什么,或者是否有 另一种方法呢?
我想在最后得到这种情节。 figure http://img524.imageshack.us/img524/2736/testl.png
答案 0 :(得分:11)
尝试使用ggplot2:
dnow <- read.table("http://dpaste.com/88561/plain/")
library(ggplot2)
qplot(V1, colour=factor(V2), data=dnow, geom="density")
答案 1 :(得分:4)
您也可以使用网格包解决此问题。
require(lattice)
dnow <- read.table('http://dpaste.com/88561/plain/')
densityplot(~V1, groups=V2, data=dnow)
答案 2 :(得分:3)
以意大利面条代码方式使用基本图形:
plot.multi.dens <- function(s)
{
junk.x = NULL
junk.y = NULL
for(i in 1:length(s))
{
junk.x = c(junk.x, density(s[[i]])$x)
junk.y = c(junk.y, density(s[[i]])$y)
}
xr <- range(junk.x)
yr <- range(junk.y)
plot(density(s[[1]]), xlim = xr, ylim = yr, main = "")
for(i in 1:length(s))
{
lines(density(s[[i]]), xlim = xr, ylim = yr, col = i)
}
}
dnow <- read.table("http://dpaste.com/88561/plain/")
library(sqldf)
x <- unlist(sqldf("select V1 from dnow where V2==0"))
y <- unlist(sqldf("select V1 from dnow where V2==1"))
z <- unlist(sqldf("select V1 from dnow where V2==2"))
plot.multi.dens(list(x,y,z))
library(Hmisc)
le <- largest.empty(x,y,.1,.1)
legend(le,legend=c("x","y","z"), col=(1:3), lwd=2, lty = 1)
答案 3 :(得分:1)
在查看微阵列数据时,我发现自己需要做很多事情,所以我把它作为我保留在github上的实用程序代码库的一部分:ARE.utils,特别是plot.densities功能
它使用基础图形,因此您可以从该功能中获取灵感来创建自己的图形,或者只是将其全部销售(但它依赖于该库中的其他一些功能):
(您可以选择安装整个软件包,但我不承诺我的功能不会以某种向后兼容的方式发生变化)。
编写自己的这样的功能并不难,但只要确保你有功能在轴和东西上选择正确的范围。无论如何,您将使用如下代码:
library(ARE.utils)
# Create a matrix dataset with separate observations in columns
dat <- matrix(c(rnorm(100), rnorm(100, mean=3),
rnorm(100, mean=3, sd=2)),
ncol=3)
# Plot them
plot.densities(dat, along='cols')
这会在同一轴上创建三种不同的密度图,并带有自己的颜色。