SEER2R-package(SEER2R)
SEER2R-package()所属R语言包:SEER2R
read from and write to SEER*STAT export files
SEER STAT导出文件读取和写入
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The Surveillance, Epidemiology, and End Results (SEER) Program of the National Cancer Institute (NCI) is an authoritative source of information on cancer incidence and survival in the United States. The SEER*Stat software developed by NCI provides a convenient, intuitive mechanism for the analysis of SEER and other cancer-related databases. SEER*STAT presents results in matrix session and users can export results into data file (either in plain text format or gz format) and dictionary information into dic file. read.SeerStat reads data and dictionary information from SEER*STAT export files. write.SeerStat writes data and dictionary information to files in the formats of SEER*STAT export files
美国国家癌症研究所(NCI)的监测,流行病学和最终结果(SEER)计划是在美国癌症发病率和生存率信息的权威来源。美国国家癌症研究所的SEER * Stat公司开发的软件的分析SEER和其他癌症相关的数据库提供了方便,直观的机制。 SEER * STAT在矩阵会议的结果,用户可以导出到数据文件(纯文本格式或gz的格式)到dic文件和字典信息的结果。 read.SeerStat读取SEER * STAT导出文件的数据字典信息。 write.SeerStat SEER * STAT导出文件的格式写入数据字典信息文件
Details
详细信息----------Details----------
(作者)----------Author(s)----------
Maintainer: Jun Luo <rpackages@gmail.com>
参考文献----------References----------
参见----------See Also----------
read.SeerStat, write.SeerStat
read.SeerStat,write.SeerStat
实例----------Examples----------
#load testing data: there are three data objects, i.e. SEER2RTestData1,SEER2RTestData2,SEER2RTestData3 [负载测试数据:数据对象有三个,即SEER2RTestData1,SEER2RTestData2,SEER2RTestData3]
data("SEER2RTestdata");
#create one SEER*STAT export dic and the associated text data file for testing purpose[创建一个SEER * STAT出口DIC和相关的文本数据文件,用于测试目的,]
dicinfoused = write.SeerStat(SEER2RTestData2, DICfileName = "testrun1.dic",UseVarLabelsInTxtFile=FALSE);
#usage of read.SeerStat[使用的read.SeerStat的]
mydata = read.SeerStat("testrun1.dic",UseVarLabelsInData=FALSE);
#get informatin inside the dic file[dic文件内得到informatin]
DICInfo = attr(mydata, "DICInfo");
#change names of columns whose names contains strings "site" or "sex"; [更改名称的列,其名称中包含字符串“网站”或“性”;]
#the order of strings does not matter[的字符串的顺序并不重要]
testdatanewnames = attr(mydata,"assignColNames")(mydata,c("sex","site"));
#extract columns whose names contains strings "site" or "sex";[提取列,其名称中包含字符串“网站”或“性”;]
testdata = attr(mydata,"getSubDataByVarName")(mydata,c("site","sex"));
#usage of write.SeerStat[使用的write.SeerStat的]
dicinfoused = write.SeerStat(mydata, DICfileName = "testrun2.dic", UseVarLabelsInTxtFile = FALSE);
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|