st.gallen(genefu)
st.gallen()所属R语言包:genefu
Function to compute the St Gallen consensus criterion for prognostication
函数来计算的预测圣加仑共识标准
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function computes the updated St Gallen consensus criterions as published by Goldhirsh et al 2003.
此函数计算更新圣加仑共识由Goldhirsh等2003出版准则。
用法----------Usage----------
st.gallen(size, grade, node, her2.neu, age, vascular.inv, na.rm = FALSE)
参数----------Arguments----------
参数:size
tumor size in cm.
厘米的肿瘤大小。
参数:grade
Histological grade, i.e. low (1), intermediate (2) and high (3) grade.
组织学分级,即低(1),中级(2)和高(3)级。
参数:node
Nodal status (0 or 1 for no lymph node invasion a,d at least 1 invaded lymph ode respectively).
淋巴结状态(0或1,无淋巴结转移A,D至少有1入侵淋巴结颂歌)。
参数:her2.neu
Her2/neu status (0 or 1).
Her2/neu的状态(0或1)。
参数:age
Age at diagnosis (in years).
诊断时的年龄(岁)。
参数:vascular.inv
Peritumoral vascular invasion (0 or 1).
肿瘤周围血管侵犯(0或1)。
参数:na.rm
TRUE if missing values should be removed, FALSE otherwise.
TRUE如果缺失值应该被删除,FALSE否则。
值----------Value----------
Vector of risk predictions: "Good", "Intermediate", and "Poor".
风险的预测:“好”,“中级”和“差”的向量。
作者(S)----------Author(s)----------
Benjamin Haibe-Kains
参考文献----------References----------
参见----------See Also----------
npi
npi
举例----------Examples----------
## load NKI dataset[#负载NKI日经指数集]
data(NKI)
## compute St Gallen predictions[#计算圣加仑预测。]
st.gallen(size=demo.nkis[ ,"size"], grade=demo.nkis[ ,"grade"],
node=demo.nkis[ ,"node"], her2.neu=sample(x=0:1, size=nrow(demo.nkis),
replace=TRUE), age=demo.nkis[ ,"age"], vascular.inv=sample(x=0:1,
size=nrow(demo.nkis), replace=TRUE), na.rm=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|