massvectorlist {mscalib} | R Documentation |
Constructor
Description
constructor of object massvectorlist (extends list).
Usage
massvectorlist(experiment,data,project,...)
Arguments
... |
|
data |
list of massvectors |
experiment |
name of experiment |
project |
name of project. |
Value
massvectorlist |
object of class massvector. |
Author(s)
Witold Wolski wolski@molgen.mpg.de
Examples
# testing constructor.
massvectorlist("my1experiment")
data(mvl)
massvectorlist("my2experiment",mvl,"hello project")
plot(mvl)
summary(mvl)
hist(mvl)
hist(mvl)
image(mvl,what="lengthmv")
mvl2<-mvl[1:100]
plot(mvl2)
summary(mvl2)
hist(mvl2)
image(mvl2,what="lengthmv")
#testing assingments
mvl2[[11]]<-mvl2[[1]]
plot(mvl2[[11]],mvl2[[1]])
image(mvl2[[11]],mvl2[[1]])
#make one massvector out of the peaklist
tt<-unlist(mvl)
plot(tt)