我有多个数据帧,其中第一列(最后用NA填充)是波数,其他列是我对多个观测值的特定波数的变量。
是否有可能以我的第一列包含x轴变量的方式绘制列,而另一列以其各自的y值绘制到一个大图中?
我已经尝试过“ matplot”(以“数字”代替点),
matplot(df[,1],df[,3:5],xlab = "Wavelength [nm]", ylab = "Absorbance")
“ xyplot”的不同集合(不可能给出多个y值),但是似乎都不起作用(以我对R的知识水平)。
最终结果应类似于this。
感谢您的帮助!
答案 0 :(得分:1)
您总是可以使用自己的功能来执行此操作;当没有什么真正适合我的需求时,我会定期执行此类功能。 我很快就将它们组合在一起,但是您可以根据需要进行调整。
# generate data
set.seed(6)
n <- 50
dat <- data.frame(x1=seq(1,100, length.out = n),
x2=seq(1,20, length.out = n)+rnorm(n),
x3=seq(1,20, length.out = n)+rnorm(n, mean = 3),
x4=seq(1,20, length.out = n)+rnorm(n, mean = 5))
# make some NAs at the end
dat[45:n,2] <- NA
dat[30:n,3] <- NA
plot_multi <- function(df, x=1, y=2, cols=y,
xlim=range(df[,x], na.rm = T),
ylim=range(df[,y], na.rm = T),
main="", xlab="", ylab="", ...){
# setup plot frame
plot(NULL,
xlim=xlim,
ylim=ylim,
main=main, xlab=xlab, ylab=ylab)
# plot all your y's against your x
pb <- sapply(seq_along(y), function(i){
points(df[,c(x, y[i])], col=cols[i], ...)
})
}
plot_multi(dat, y=2:4, type='l', lwd=3, main = ":)",
xlab = "Wavelength", ylab = "Absorbance")
结果:
编辑
我实际上是偶然地在网上找到了您的数据集,因此,我还将介绍如何使用上面的代码来绘制数据集。
file <- 'http://openmv.net/file/tablet-spectra.csv'
spectra <- read.csv(file, header = FALSE)
# remove box label
spectra <- spectra[,-1]
# add the 'wavelength' and rotate the df
# (i didn't find the actual wavelength values, but hey).
spectra <- cbind(1:ncol(spectra), t(spectra))
plot_multi(spectra, y=2:ncol(spectra), cols = rainbow(ncol(spectra)),
type='l', main=":))", ylab="Absorbance", xlab = "'Wavelength'")
答案 1 :(得分:1)
您可以使用pavo R程序包,该程序包用于处理光谱数据(全面披露,我是维护者之一):
library(pavo)
df <- t(read.csv("http://openmv.net/file/tablet-spectra.csv", header = FALSE))
df <- df[-1, ]
df <- apply(df, 2, as.numeric)
df <- cbind(wl = seq_len(nrow(df)),
df)
df <- as.rspec(df)
#> wavelengths found in column 1
plot(df, ylab = "Absorbance", col = rainbow(3))
由reprex package(v0.3.0)于2019-07-26创建