as.data.frame.feat(rphast)
as.data.frame.feat()所属R语言包:rphast
Features to Data Frame
数据框的功能
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Convert a features object to a data frame
一个数据框转换功能对象
用法----------Usage----------
参数----------Arguments----------
参数:x
an object of type feat
对象类型feat,
参数:row.names
optional names for each feature
每个功能的可选名称
参数:optional
logical, if TRUE, setting row names and converting column names (to syntactic names: see make.names is optional.
逻辑,如果TRUE,设置行的名称和转换列名(语法名称:make.names是可选的。
参数:...
additional arguments to be passed to other methods
额外的参数传递给其他方法
值----------Value----------
a data frame containing features data
一个数据框包含数据
(作者)----------Author(s)----------
Melissa J. Hubisz and Adam Siepel
参见----------See Also----------
feat for a description of features data frames, and as.pointer.feat for conversion in the other
feat的描述数据框的功能,as.pointer.feat的转换中的其他
实例----------Examples----------
seq <- rep("hg18.chr6", 10)
src <- rep("fake_example", 10)
feature <- rep("CDS", 10)
start <- seq(1, 100, by=10)
end <- seq(10, 100, by=10)
f1 <- feat(seq, src, feature, start, end, pointer.only=TRUE)
summary(f1)
f2 <- as.data.frame(f1)
summary(f2)
dim(f2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|