npi(genefu)
npi()所属R语言包:genefu
Function to compute the Nottingham Prognostic Index
诺丁汉预后指数函数来计算
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function computes the Nottingham Prognostic Index (NPI) as published in Galeat et al, 1992. NPI is a clinical index shown to be highly prognostic in breast cancer.
此函数计算Galeat等人,1992年出版的诺丁汉预后指数(NPI)。非营利机构是一个证明是高度乳腺癌预后的临床指标。
用法----------Usage----------
npi(size, grade, node, 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. If only binary nodal status (0/1) is available, map 0 to 1 and 1 to 3.
淋巴结状态。如果只有二进制节点的状态(0/1),图01和13。
参数:na.rm
TRUE if missing values should be removed, FALSE otherwise.
TRUE如果缺失值应该被删除,FALSE否则。
Details
详情----------Details----------
The risk prediction is either Good if score < 3.4, Intermediate if 3.4 <= score <- 5.4, or Poor if score > 5.4.
风险预测是要么Good如果得分<3.4,Intermediate如果3.4 <= <得分 - 5.4,或Poor如果分数> 5.4。
值----------Value----------
参数:score
Continuous signature scores
连续签名分数
参数:risk
Binary risk classification, 1 being high risk and 0 being low risk.
二进制风险分类,1是高风险和0是低风险。
作者(S)----------Author(s)----------
Benjamin Haibe-Kains
参考文献----------References----------
参见----------See Also----------
st.gallen
st.gallen
举例----------Examples----------
## load NKI dataset[#负载NKI日经指数集]
data(nkis)
## compute NPI score and risk classification[#计算的NPI得分和风险分类]
npi(size=demo.nkis[ ,"size"], grade=demo.nkis[ ,"grade"],
node=ifelse(demo.nkis[ ,"node"] == 0, 1, 3), na.rm=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|