annotationTable(a4Reporting)
annotationTable()所属R语言包:a4Reporting
Function to Create an annotationTable
函数创建annotationTable的
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function takes data to be displayed as well as data containing hyperlinks corresponding to displayed data and constructs an object of class annotationTable
此功能需要以及要显示的数据数据含有超链接显示的数据和结构对应一个对象类annotationTable
用法----------Usage----------
annotationTable(displayData, displayCols = NULL, hrefData = NULL)
参数----------Arguments----------
参数:displayData
data frame containing data that is meant to be displayed in a LaTeX table
数据框包含的是要在一个LaTeX表显示的数据
参数:displayCols
list of named character vectors (of length one) that function as key-value pairs; the names (keys) correspond to columns for which the hyperlinks should be generated whereas the strings (values) indicate what kind of link should be produced based on the corresponding column in the displayData. The values should be one of "EntrezId" or "GOId".
功能键 - 值对的名称(键)应生成的超链接的列对应的字符串(值),而显示的基础上,应产生什么样的链接列表命名的特征向量(长度为一)相应的列在displayData。值应该是一个"EntrezId"或"GOId"。
参数:hrefData
data frame containing hyperlink information for the columns of the same name in the displayData data frame
displayData数据框中相同名称的列包含超链接信息的数据框
Details
详情----------Details----------
If hrefData is given, the displayCols are not taken into account. If no hrefData is given, the information in displayCols allows to automatically create the hrefData.
hrefData如果,displayCols不考虑“。如果没有hrefData给出,displayCols的信息可以自动创建hrefData。
值----------Value----------
object of class 'annotationTable'
对象类的annotationTable“
作者(S)----------Author(s)----------
Tobias Verbeke
举例----------Examples----------
## some dummy data[#一些虚拟的数据]
dData <- data.frame(someSymbol = LETTERS[1:5],
accessionNumber =
c("X83928", "V00540", "U21090", "L38487", "M34057"))
at <- annotationTable(displayData = dData,
displayCols = list(accessionNumber = "EntrezId"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|