列线图(Nomogram)原理,R实现方法

2016-06-20 生存分析 生存分析 发表于上海

Nomogram 怎么用? 我们用个例子来说明Nomogram的用法,临床上用四个指标A,B,C,D来预测某疾病的发病率,其中A和B是连续性变量,C和D为二分类变量;A的取值范围在0-80之间,B的取值范围在0-10之间,C取值为Low和High,和D取值为Neg和Pos,在统计软件中建立回归模型,并绘制Nomogram,具体绘制出的图形如下: 图1.Nomogram 示

Nomogram 怎么用?

我们用个例子来说明Nomogram的用法,临床上用四个指标A,B,C,D来预测某疾病的发病率,其中A和B是连续性变量,C和D为二分类变量;A的取值范围在0-80之间,B的取值范围在0-10之间,C取值为Low和High,和D取值为Neg和Pos,在统计软件中建立回归模型,并绘制Nomogram,具体绘制出的图形如下:

 

图1.Nomogram 示意图

假设有一个病人,他的四个因素的值分别是:A=40, B=5,C=Low和D=Pos,Nomogrm的用法是在A变量的刻度尺上找到其值为40的刻度,然后垂直画条竖线,对应到最上方的Points刻度尺上,找到Points对应的分值。我们看到图中A为40时,其Points是50,同理B=5时其Points是40,C=Low时其Points值是0,D=Pos时其Points值是19.将这四个因素的Points值加起来总共是109分;下一步在图下方的Total Points刻度尺上找到109,向下方的Probability of Clin.Outcome做垂线,109对应的值是39,则此病人该种疾病得发病风险预测概率值是39%。

Nomogram 绘制原理

一般的回归模型都可以绘制其对应的Nomogram,本文以二分类的Logistic 回归为例。例:为探讨某些危险因素对某种疾病的发病影响,统计建模筛选出的结果显示年龄(10-90),性别(男女)和血压(低,正常,高)是三个影响因素,利用这三个因素与二分类的结局变量做Logistic回归,回归结果见下表:

 

1. 对每个自变量(因素)赋分

一般情况下,绘制Nomogram时要求每个因素的赋分范围在0-100之间。Nomogram绘制实际上是对上述回归结果的系数做转化后以图形的形式展现出来,即主要是对回归模型拟合系数的转化。

(1)系数转换

对于连续性变量年龄,其范围是10-90,结合表1中估计的各因素的系数,Nomogram的转换公式是:

 

(2)根据转换结果赋分

绘制Nomogram的最核心点是哪个变量对预测结果影响最大,然后以影响最大的指标为基础(即Nomogram的第一条刻度线),第二影响大的指标以第一影响大的指标为基础,按照一定的公式转换成比例,第三影响大的指标同样以第一大的指标为基础,做一定的转换。换句话说,Nomogram的每个指标的标尺,是以影响最大的指标为参考做出来的。

本例中,按照转换的系数值大小排序及赋分结果见表2。

 

上面步骤即完成了最基本的每个因素的赋分过程,即每个因素刻度尺的确定及刻度尺所对应的Points的值。

Nomgram的R语言实现代码

简单的说这是一种将Logistic回归或Cox回归图形化呈现的方法,可以让读者从图中很简便地根据预测变量的值得到因变量的大致概率数值。其对于Logistic回归或Cox回归的意义,大概相当于散点图对于简单线性回归的意义。

下面简单说下Nomogram怎么看。如下图。欲知年龄50岁的女性(sex=1)的患病风险,只需要将age=45岁向points轴投射,则points=50;同理sex=1时,points≈37。两者相加则Total points=87;将此数值在Total points轴上向Risk概率轴投射,则可知风险大概在0.4和0.5之间。(参见图中红线)对于单个变量,只需要令Total points = points进行投射即可。


接下来讲如何用R语言做出上面的这张图。简单起见,此帖仅讨论Logistic回归,Cox回归的方法类似,但相对更复杂。

本帖所用数据引用自上海交大出版《医学统计学及SAS应用(修订版)》的例11.4

require(rms) ##调用rms包

# 建立数据集
y = c(0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1,
1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1,
1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0,
0, 0, 1, 0, 1, 0, 1, 0, 1)
age = c(28, 42, 46, 45, 34, 44, 48, 45, 38, 45, 49, 45, 41, 46, 49, 46, 44, 48,
52, 48, 45, 50, 53, 57, 46, 52, 54, 57, 47, 52, 55, 59, 50, 54, 57, 60,
51, 55, 46, 63, 51, 59, 48, 35, 53, 59, 57, 37, 55, 32, 60, 43, 59, 37,
30, 47, 60, 38, 34, 48, 32, 38, 36, 49, 33, 42, 38, 58, 35, 43, 39, 59,
39, 43, 42, 60, 40, 44)
sex = c(0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1,
0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1,
0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1,
0, 1, 1, 1, 0, 1)
ECG = c(0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1,
0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 2, 1, 0, 0, 2, 2, 0, 0, 2, 2,
0, 1, 2, 2, 0, 1, 0, 2, 0, 1, 0, 2, 1, 1, 0, 2, 1, 1, 0, 2, 1, 1, 0, 2,
1, 1, 0, 2, 1, 1)
# 设定nomogram的参数
ddist <- datadist(age, sex, ECG)
options(datadist='ddist')
# logistic回归
f <- lrm(y ~ age + sex + ECG)
# nomogram
nom <- nomogram(f, fun=plogis,
fun.at=c(.001, .01, .05, seq(.1,.9, by=.1), .95, .99, .999),
lp=F, funlabel="Risk")
plot(nom)

 

有朋友问到Cox回归的代码怎么写。Cox回归模型会复杂一些,因为可能涉及到不同时间点(3年、5年)生存概率的计算。下面讨论最简单的概率轴为中位生存时间的情况。

require(rms)
require(Hmisc) ##需要下载安装

require(survival) ##R默认自带的用于做生存分析的包
# 建立数据集(使用rms包example的代码,未改动)
n <- 1000
set.seed(731)
age <- 50 + 12*rnorm(n)
label(age) <- "Age"
sex <- factor(sample(c('Male','Female'), n,
rep=TRUE, prob=c(.6, .4)))
cens <- 15*runif(n)
h <- .02*exp(.04*(age-50)+.8*(sex=='Female'))
dt <- -log(runif(n))/h
label(dt) <- 'Follow-up Time'
e <- ifelse(dt <= cens,1,0)
dt <- pmin(dt, cens)
units(dt) <- "Year"
# 设定nomogram的参数
ddist <- datadist(age, sex)
options(datadist='ddist')
# Cox回归
S <- Surv(dt,e)
f <- cph(S ~ rcs(age,4) + sex, x=T, y=T)
med <- Quantile(f)
# nomogram
nom <- nomogram(f, fun=function(x) med(x),
fun.at=c(13,12,11,9,8,7,6,5),lp=F, funlabel="Median Survival Time")
plot(nom) ##绘制Nomgram图

 

以上是R语言实现Nomgram的程序

内容来自于生存分析微信号

 

 

版权声明:
本网站所有内容来源注明为“梅斯医学”或“MedSci原创”的文字、图片和音视频资料,版权均属于梅斯医学所有。非经授权,任何媒体、网站或个人不得转载,授权转载时须注明来源为“梅斯医学”。其它来源的文章系转载文章,或“梅斯号”自媒体发布的文章,仅系出于传递更多信息之目的,本站仅负责审核内容合规,其内容不代表本站立场,本站不负责内容的准确性和版权。如果存在侵权、或不希望被转载的媒体或个人可与我们联系,我们将立即进行删除处理。
在此留言
评论区 (12)
#插入话题
  1. [GetPortalCommentsPageByObjectIdResponse(id=2196420, encodeId=b164219642070, content=列线图和表中年龄水平不一致,得分是一样的。, beContent=null, objectType=article, channel=null, level=null, likeNumber=3, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=8dfa6297891, createdName=3017771_9951, createdTime=Mon Apr 01 10:28:32 CST 2024, time=2024-04-01, status=1, ipAttribution=黑龙江省), GetPortalCommentsPageByObjectIdResponse(id=2118682, encodeId=b3ba21186823b, content=公众号“生存分析”2015年5月27日发布的原理性和实现文章。, beContent=null, objectType=article, channel=null, level=null, likeNumber=35, replyNumber=1, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=https://img.medsci.cn/20221202/2cc4aad5f8f74afda57bd5fba177906c/6325d827ce7142e38fa146b9af211757.jpg, createdBy=1fe25433930, createdName=马兴华 , createdTime=Fri Mar 10 15:38:24 CST 2023, time=2023-03-10, status=1, ipAttribution=广东省), GetPortalCommentsPageByObjectIdResponse(id=951254, encodeId=cf2b9512549f, content=这不是坑么, beContent=null, objectType=article, channel=null, level=null, likeNumber=46, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:16 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951253, encodeId=5b73951253e9, content=在哪里搞积分啊, beContent=null, objectType=article, channel=null, level=null, likeNumber=50, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:09 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951252, encodeId=32cc95125229, content=积分不足。。。, beContent=null, objectType=article, channel=null, level=null, likeNumber=52, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:01 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1981406, encodeId=dd4019814061f, content=<a href='/topic/show?id=15a8319384a' target=_blank style='color:#2F92EE;'>#列线图#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=39, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31938, encryptionId=15a8319384a, topicName=列线图)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=7931272, createdName=liuli5079, createdTime=Fri Sep 09 02:05:00 CST 2016, time=2016-09-09, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91196, encodeId=0844911967d, content=in 就kninI, beContent=null, objectType=article, channel=null, level=null, likeNumber=126, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91197, encodeId=11949119e19, content=你I……8?、ki, beContent=null, objectType=article, channel=null, level=null, likeNumber=65, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1487556, encodeId=00dd148e55689, content=<a href='/topic/show?id=1e111292927' target=_blank style='color:#2F92EE;'>#Nomogram#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=41, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12929, encryptionId=1e111292927, topicName=Nomogram)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=28d78317991, createdName=lishiwen, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1585375, encodeId=955a15853e54e, content=<a href='/topic/show?id=2e681208016' target=_blank style='color:#2F92EE;'>#MOG#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12080, encryptionId=2e681208016, topicName=MOG)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=a85417178370, createdName=Boyinsh, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=)]
    2024-04-01 3017771_9951 来自黑龙江省

    列线图和表中年龄水平不一致,得分是一样的。

    0

  2. [GetPortalCommentsPageByObjectIdResponse(id=2196420, encodeId=b164219642070, content=列线图和表中年龄水平不一致,得分是一样的。, beContent=null, objectType=article, channel=null, level=null, likeNumber=3, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=8dfa6297891, createdName=3017771_9951, createdTime=Mon Apr 01 10:28:32 CST 2024, time=2024-04-01, status=1, ipAttribution=黑龙江省), GetPortalCommentsPageByObjectIdResponse(id=2118682, encodeId=b3ba21186823b, content=公众号“生存分析”2015年5月27日发布的原理性和实现文章。, beContent=null, objectType=article, channel=null, level=null, likeNumber=35, replyNumber=1, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=https://img.medsci.cn/20221202/2cc4aad5f8f74afda57bd5fba177906c/6325d827ce7142e38fa146b9af211757.jpg, createdBy=1fe25433930, createdName=马兴华 , createdTime=Fri Mar 10 15:38:24 CST 2023, time=2023-03-10, status=1, ipAttribution=广东省), GetPortalCommentsPageByObjectIdResponse(id=951254, encodeId=cf2b9512549f, content=这不是坑么, beContent=null, objectType=article, channel=null, level=null, likeNumber=46, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:16 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951253, encodeId=5b73951253e9, content=在哪里搞积分啊, beContent=null, objectType=article, channel=null, level=null, likeNumber=50, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:09 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951252, encodeId=32cc95125229, content=积分不足。。。, beContent=null, objectType=article, channel=null, level=null, likeNumber=52, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:01 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1981406, encodeId=dd4019814061f, content=<a href='/topic/show?id=15a8319384a' target=_blank style='color:#2F92EE;'>#列线图#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=39, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31938, encryptionId=15a8319384a, topicName=列线图)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=7931272, createdName=liuli5079, createdTime=Fri Sep 09 02:05:00 CST 2016, time=2016-09-09, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91196, encodeId=0844911967d, content=in 就kninI, beContent=null, objectType=article, channel=null, level=null, likeNumber=126, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91197, encodeId=11949119e19, content=你I……8?、ki, beContent=null, objectType=article, channel=null, level=null, likeNumber=65, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1487556, encodeId=00dd148e55689, content=<a href='/topic/show?id=1e111292927' target=_blank style='color:#2F92EE;'>#Nomogram#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=41, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12929, encryptionId=1e111292927, topicName=Nomogram)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=28d78317991, createdName=lishiwen, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1585375, encodeId=955a15853e54e, content=<a href='/topic/show?id=2e681208016' target=_blank style='color:#2F92EE;'>#MOG#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12080, encryptionId=2e681208016, topicName=MOG)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=a85417178370, createdName=Boyinsh, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=)]
    2023-03-10 马兴华 来自广东省

    公众号“生存分析”2015年5月27日发布的原理性和实现文章。

    1

    展开1条回复
  3. [GetPortalCommentsPageByObjectIdResponse(id=2196420, encodeId=b164219642070, content=列线图和表中年龄水平不一致,得分是一样的。, beContent=null, objectType=article, channel=null, level=null, likeNumber=3, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=8dfa6297891, createdName=3017771_9951, createdTime=Mon Apr 01 10:28:32 CST 2024, time=2024-04-01, status=1, ipAttribution=黑龙江省), GetPortalCommentsPageByObjectIdResponse(id=2118682, encodeId=b3ba21186823b, content=公众号“生存分析”2015年5月27日发布的原理性和实现文章。, beContent=null, objectType=article, channel=null, level=null, likeNumber=35, replyNumber=1, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=https://img.medsci.cn/20221202/2cc4aad5f8f74afda57bd5fba177906c/6325d827ce7142e38fa146b9af211757.jpg, createdBy=1fe25433930, createdName=马兴华 , createdTime=Fri Mar 10 15:38:24 CST 2023, time=2023-03-10, status=1, ipAttribution=广东省), GetPortalCommentsPageByObjectIdResponse(id=951254, encodeId=cf2b9512549f, content=这不是坑么, beContent=null, objectType=article, channel=null, level=null, likeNumber=46, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:16 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951253, encodeId=5b73951253e9, content=在哪里搞积分啊, beContent=null, objectType=article, channel=null, level=null, likeNumber=50, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:09 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951252, encodeId=32cc95125229, content=积分不足。。。, beContent=null, objectType=article, channel=null, level=null, likeNumber=52, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:01 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1981406, encodeId=dd4019814061f, content=<a href='/topic/show?id=15a8319384a' target=_blank style='color:#2F92EE;'>#列线图#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=39, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31938, encryptionId=15a8319384a, topicName=列线图)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=7931272, createdName=liuli5079, createdTime=Fri Sep 09 02:05:00 CST 2016, time=2016-09-09, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91196, encodeId=0844911967d, content=in 就kninI, beContent=null, objectType=article, channel=null, level=null, likeNumber=126, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91197, encodeId=11949119e19, content=你I……8?、ki, beContent=null, objectType=article, channel=null, level=null, likeNumber=65, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1487556, encodeId=00dd148e55689, content=<a href='/topic/show?id=1e111292927' target=_blank style='color:#2F92EE;'>#Nomogram#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=41, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12929, encryptionId=1e111292927, topicName=Nomogram)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=28d78317991, createdName=lishiwen, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1585375, encodeId=955a15853e54e, content=<a href='/topic/show?id=2e681208016' target=_blank style='color:#2F92EE;'>#MOG#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12080, encryptionId=2e681208016, topicName=MOG)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=a85417178370, createdName=Boyinsh, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=)]
    2021-03-25 ms7000000191761806

    这不是坑么

    0

  4. [GetPortalCommentsPageByObjectIdResponse(id=2196420, encodeId=b164219642070, content=列线图和表中年龄水平不一致,得分是一样的。, beContent=null, objectType=article, channel=null, level=null, likeNumber=3, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=8dfa6297891, createdName=3017771_9951, createdTime=Mon Apr 01 10:28:32 CST 2024, time=2024-04-01, status=1, ipAttribution=黑龙江省), GetPortalCommentsPageByObjectIdResponse(id=2118682, encodeId=b3ba21186823b, content=公众号“生存分析”2015年5月27日发布的原理性和实现文章。, beContent=null, objectType=article, channel=null, level=null, likeNumber=35, replyNumber=1, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=https://img.medsci.cn/20221202/2cc4aad5f8f74afda57bd5fba177906c/6325d827ce7142e38fa146b9af211757.jpg, createdBy=1fe25433930, createdName=马兴华 , createdTime=Fri Mar 10 15:38:24 CST 2023, time=2023-03-10, status=1, ipAttribution=广东省), GetPortalCommentsPageByObjectIdResponse(id=951254, encodeId=cf2b9512549f, content=这不是坑么, beContent=null, objectType=article, channel=null, level=null, likeNumber=46, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:16 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951253, encodeId=5b73951253e9, content=在哪里搞积分啊, beContent=null, objectType=article, channel=null, level=null, likeNumber=50, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:09 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951252, encodeId=32cc95125229, content=积分不足。。。, beContent=null, objectType=article, channel=null, level=null, likeNumber=52, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:01 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1981406, encodeId=dd4019814061f, content=<a href='/topic/show?id=15a8319384a' target=_blank style='color:#2F92EE;'>#列线图#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=39, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31938, encryptionId=15a8319384a, topicName=列线图)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=7931272, createdName=liuli5079, createdTime=Fri Sep 09 02:05:00 CST 2016, time=2016-09-09, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91196, encodeId=0844911967d, content=in 就kninI, beContent=null, objectType=article, channel=null, level=null, likeNumber=126, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91197, encodeId=11949119e19, content=你I……8?、ki, beContent=null, objectType=article, channel=null, level=null, likeNumber=65, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1487556, encodeId=00dd148e55689, content=<a href='/topic/show?id=1e111292927' target=_blank style='color:#2F92EE;'>#Nomogram#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=41, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12929, encryptionId=1e111292927, topicName=Nomogram)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=28d78317991, createdName=lishiwen, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1585375, encodeId=955a15853e54e, content=<a href='/topic/show?id=2e681208016' target=_blank style='color:#2F92EE;'>#MOG#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12080, encryptionId=2e681208016, topicName=MOG)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=a85417178370, createdName=Boyinsh, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=)]
    2021-03-25 ms7000000191761806

    在哪里搞积分啊

    0

  5. [GetPortalCommentsPageByObjectIdResponse(id=2196420, encodeId=b164219642070, content=列线图和表中年龄水平不一致,得分是一样的。, beContent=null, objectType=article, channel=null, level=null, likeNumber=3, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=8dfa6297891, createdName=3017771_9951, createdTime=Mon Apr 01 10:28:32 CST 2024, time=2024-04-01, status=1, ipAttribution=黑龙江省), GetPortalCommentsPageByObjectIdResponse(id=2118682, encodeId=b3ba21186823b, content=公众号“生存分析”2015年5月27日发布的原理性和实现文章。, beContent=null, objectType=article, channel=null, level=null, likeNumber=35, replyNumber=1, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=https://img.medsci.cn/20221202/2cc4aad5f8f74afda57bd5fba177906c/6325d827ce7142e38fa146b9af211757.jpg, createdBy=1fe25433930, createdName=马兴华 , createdTime=Fri Mar 10 15:38:24 CST 2023, time=2023-03-10, status=1, ipAttribution=广东省), GetPortalCommentsPageByObjectIdResponse(id=951254, encodeId=cf2b9512549f, content=这不是坑么, beContent=null, objectType=article, channel=null, level=null, likeNumber=46, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:16 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951253, encodeId=5b73951253e9, content=在哪里搞积分啊, beContent=null, objectType=article, channel=null, level=null, likeNumber=50, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:09 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951252, encodeId=32cc95125229, content=积分不足。。。, beContent=null, objectType=article, channel=null, level=null, likeNumber=52, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:01 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1981406, encodeId=dd4019814061f, content=<a href='/topic/show?id=15a8319384a' target=_blank style='color:#2F92EE;'>#列线图#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=39, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31938, encryptionId=15a8319384a, topicName=列线图)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=7931272, createdName=liuli5079, createdTime=Fri Sep 09 02:05:00 CST 2016, time=2016-09-09, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91196, encodeId=0844911967d, content=in 就kninI, beContent=null, objectType=article, channel=null, level=null, likeNumber=126, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91197, encodeId=11949119e19, content=你I……8?、ki, beContent=null, objectType=article, channel=null, level=null, likeNumber=65, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1487556, encodeId=00dd148e55689, content=<a href='/topic/show?id=1e111292927' target=_blank style='color:#2F92EE;'>#Nomogram#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=41, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12929, encryptionId=1e111292927, topicName=Nomogram)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=28d78317991, createdName=lishiwen, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1585375, encodeId=955a15853e54e, content=<a href='/topic/show?id=2e681208016' target=_blank style='color:#2F92EE;'>#MOG#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12080, encryptionId=2e681208016, topicName=MOG)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=a85417178370, createdName=Boyinsh, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=)]
    2021-03-25 ms7000000191761806

    积分不足。。。

    0

  6. [GetPortalCommentsPageByObjectIdResponse(id=2196420, encodeId=b164219642070, content=列线图和表中年龄水平不一致,得分是一样的。, beContent=null, objectType=article, channel=null, level=null, likeNumber=3, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=8dfa6297891, createdName=3017771_9951, createdTime=Mon Apr 01 10:28:32 CST 2024, time=2024-04-01, status=1, ipAttribution=黑龙江省), GetPortalCommentsPageByObjectIdResponse(id=2118682, encodeId=b3ba21186823b, content=公众号“生存分析”2015年5月27日发布的原理性和实现文章。, beContent=null, objectType=article, channel=null, level=null, likeNumber=35, replyNumber=1, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=https://img.medsci.cn/20221202/2cc4aad5f8f74afda57bd5fba177906c/6325d827ce7142e38fa146b9af211757.jpg, createdBy=1fe25433930, createdName=马兴华 , createdTime=Fri Mar 10 15:38:24 CST 2023, time=2023-03-10, status=1, ipAttribution=广东省), GetPortalCommentsPageByObjectIdResponse(id=951254, encodeId=cf2b9512549f, content=这不是坑么, beContent=null, objectType=article, channel=null, level=null, likeNumber=46, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:16 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951253, encodeId=5b73951253e9, content=在哪里搞积分啊, beContent=null, objectType=article, channel=null, level=null, likeNumber=50, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:09 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951252, encodeId=32cc95125229, content=积分不足。。。, beContent=null, objectType=article, channel=null, level=null, likeNumber=52, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:01 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1981406, encodeId=dd4019814061f, content=<a href='/topic/show?id=15a8319384a' target=_blank style='color:#2F92EE;'>#列线图#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=39, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31938, encryptionId=15a8319384a, topicName=列线图)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=7931272, createdName=liuli5079, createdTime=Fri Sep 09 02:05:00 CST 2016, time=2016-09-09, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91196, encodeId=0844911967d, content=in 就kninI, beContent=null, objectType=article, channel=null, level=null, likeNumber=126, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91197, encodeId=11949119e19, content=你I……8?、ki, beContent=null, objectType=article, channel=null, level=null, likeNumber=65, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1487556, encodeId=00dd148e55689, content=<a href='/topic/show?id=1e111292927' target=_blank style='color:#2F92EE;'>#Nomogram#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=41, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12929, encryptionId=1e111292927, topicName=Nomogram)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=28d78317991, createdName=lishiwen, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1585375, encodeId=955a15853e54e, content=<a href='/topic/show?id=2e681208016' target=_blank style='color:#2F92EE;'>#MOG#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12080, encryptionId=2e681208016, topicName=MOG)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=a85417178370, createdName=Boyinsh, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=)]
  7. [GetPortalCommentsPageByObjectIdResponse(id=2196420, encodeId=b164219642070, content=列线图和表中年龄水平不一致,得分是一样的。, beContent=null, objectType=article, channel=null, level=null, likeNumber=3, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=8dfa6297891, createdName=3017771_9951, createdTime=Mon Apr 01 10:28:32 CST 2024, time=2024-04-01, status=1, ipAttribution=黑龙江省), GetPortalCommentsPageByObjectIdResponse(id=2118682, encodeId=b3ba21186823b, content=公众号“生存分析”2015年5月27日发布的原理性和实现文章。, beContent=null, objectType=article, channel=null, level=null, likeNumber=35, replyNumber=1, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=https://img.medsci.cn/20221202/2cc4aad5f8f74afda57bd5fba177906c/6325d827ce7142e38fa146b9af211757.jpg, createdBy=1fe25433930, createdName=马兴华 , createdTime=Fri Mar 10 15:38:24 CST 2023, time=2023-03-10, status=1, ipAttribution=广东省), GetPortalCommentsPageByObjectIdResponse(id=951254, encodeId=cf2b9512549f, content=这不是坑么, beContent=null, objectType=article, channel=null, level=null, likeNumber=46, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:16 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951253, encodeId=5b73951253e9, content=在哪里搞积分啊, beContent=null, objectType=article, channel=null, level=null, likeNumber=50, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:09 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951252, encodeId=32cc95125229, content=积分不足。。。, beContent=null, objectType=article, channel=null, level=null, likeNumber=52, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:01 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1981406, encodeId=dd4019814061f, content=<a href='/topic/show?id=15a8319384a' target=_blank style='color:#2F92EE;'>#列线图#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=39, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31938, encryptionId=15a8319384a, topicName=列线图)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=7931272, createdName=liuli5079, createdTime=Fri Sep 09 02:05:00 CST 2016, time=2016-09-09, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91196, encodeId=0844911967d, content=in 就kninI, beContent=null, objectType=article, channel=null, level=null, likeNumber=126, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91197, encodeId=11949119e19, content=你I……8?、ki, beContent=null, objectType=article, channel=null, level=null, likeNumber=65, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1487556, encodeId=00dd148e55689, content=<a href='/topic/show?id=1e111292927' target=_blank style='color:#2F92EE;'>#Nomogram#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=41, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12929, encryptionId=1e111292927, topicName=Nomogram)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=28d78317991, createdName=lishiwen, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1585375, encodeId=955a15853e54e, content=<a href='/topic/show?id=2e681208016' target=_blank style='color:#2F92EE;'>#MOG#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12080, encryptionId=2e681208016, topicName=MOG)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=a85417178370, createdName=Boyinsh, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=)]
    2016-06-26 princekiwi

    in 就kninI

    0

  8. [GetPortalCommentsPageByObjectIdResponse(id=2196420, encodeId=b164219642070, content=列线图和表中年龄水平不一致,得分是一样的。, beContent=null, objectType=article, channel=null, level=null, likeNumber=3, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=8dfa6297891, createdName=3017771_9951, createdTime=Mon Apr 01 10:28:32 CST 2024, time=2024-04-01, status=1, ipAttribution=黑龙江省), GetPortalCommentsPageByObjectIdResponse(id=2118682, encodeId=b3ba21186823b, content=公众号“生存分析”2015年5月27日发布的原理性和实现文章。, beContent=null, objectType=article, channel=null, level=null, likeNumber=35, replyNumber=1, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=https://img.medsci.cn/20221202/2cc4aad5f8f74afda57bd5fba177906c/6325d827ce7142e38fa146b9af211757.jpg, createdBy=1fe25433930, createdName=马兴华 , createdTime=Fri Mar 10 15:38:24 CST 2023, time=2023-03-10, status=1, ipAttribution=广东省), GetPortalCommentsPageByObjectIdResponse(id=951254, encodeId=cf2b9512549f, content=这不是坑么, beContent=null, objectType=article, channel=null, level=null, likeNumber=46, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:16 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951253, encodeId=5b73951253e9, content=在哪里搞积分啊, beContent=null, objectType=article, channel=null, level=null, likeNumber=50, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:09 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951252, encodeId=32cc95125229, content=积分不足。。。, beContent=null, objectType=article, channel=null, level=null, likeNumber=52, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:01 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1981406, encodeId=dd4019814061f, content=<a href='/topic/show?id=15a8319384a' target=_blank style='color:#2F92EE;'>#列线图#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=39, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31938, encryptionId=15a8319384a, topicName=列线图)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=7931272, createdName=liuli5079, createdTime=Fri Sep 09 02:05:00 CST 2016, time=2016-09-09, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91196, encodeId=0844911967d, content=in 就kninI, beContent=null, objectType=article, channel=null, level=null, likeNumber=126, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91197, encodeId=11949119e19, content=你I……8?、ki, beContent=null, objectType=article, channel=null, level=null, likeNumber=65, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1487556, encodeId=00dd148e55689, content=<a href='/topic/show?id=1e111292927' target=_blank style='color:#2F92EE;'>#Nomogram#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=41, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12929, encryptionId=1e111292927, topicName=Nomogram)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=28d78317991, createdName=lishiwen, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1585375, encodeId=955a15853e54e, content=<a href='/topic/show?id=2e681208016' target=_blank style='color:#2F92EE;'>#MOG#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12080, encryptionId=2e681208016, topicName=MOG)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=a85417178370, createdName=Boyinsh, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=)]
    2016-06-26 princekiwi

    你I……8?、ki

    0

  9. [GetPortalCommentsPageByObjectIdResponse(id=2196420, encodeId=b164219642070, content=列线图和表中年龄水平不一致,得分是一样的。, beContent=null, objectType=article, channel=null, level=null, likeNumber=3, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=8dfa6297891, createdName=3017771_9951, createdTime=Mon Apr 01 10:28:32 CST 2024, time=2024-04-01, status=1, ipAttribution=黑龙江省), GetPortalCommentsPageByObjectIdResponse(id=2118682, encodeId=b3ba21186823b, content=公众号“生存分析”2015年5月27日发布的原理性和实现文章。, beContent=null, objectType=article, channel=null, level=null, likeNumber=35, replyNumber=1, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=https://img.medsci.cn/20221202/2cc4aad5f8f74afda57bd5fba177906c/6325d827ce7142e38fa146b9af211757.jpg, createdBy=1fe25433930, createdName=马兴华 , createdTime=Fri Mar 10 15:38:24 CST 2023, time=2023-03-10, status=1, ipAttribution=广东省), GetPortalCommentsPageByObjectIdResponse(id=951254, encodeId=cf2b9512549f, content=这不是坑么, beContent=null, objectType=article, channel=null, level=null, likeNumber=46, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:16 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951253, encodeId=5b73951253e9, content=在哪里搞积分啊, beContent=null, objectType=article, channel=null, level=null, likeNumber=50, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:09 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951252, encodeId=32cc95125229, content=积分不足。。。, beContent=null, objectType=article, channel=null, level=null, likeNumber=52, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:01 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1981406, encodeId=dd4019814061f, content=<a href='/topic/show?id=15a8319384a' target=_blank style='color:#2F92EE;'>#列线图#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=39, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31938, encryptionId=15a8319384a, topicName=列线图)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=7931272, createdName=liuli5079, createdTime=Fri Sep 09 02:05:00 CST 2016, time=2016-09-09, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91196, encodeId=0844911967d, content=in 就kninI, beContent=null, objectType=article, channel=null, level=null, likeNumber=126, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91197, encodeId=11949119e19, content=你I……8?、ki, beContent=null, objectType=article, channel=null, level=null, likeNumber=65, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1487556, encodeId=00dd148e55689, content=<a href='/topic/show?id=1e111292927' target=_blank style='color:#2F92EE;'>#Nomogram#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=41, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12929, encryptionId=1e111292927, topicName=Nomogram)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=28d78317991, createdName=lishiwen, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1585375, encodeId=955a15853e54e, content=<a href='/topic/show?id=2e681208016' target=_blank style='color:#2F92EE;'>#MOG#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12080, encryptionId=2e681208016, topicName=MOG)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=a85417178370, createdName=Boyinsh, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=)]
    2016-06-22 lishiwen
  10. [GetPortalCommentsPageByObjectIdResponse(id=2196420, encodeId=b164219642070, content=列线图和表中年龄水平不一致,得分是一样的。, beContent=null, objectType=article, channel=null, level=null, likeNumber=3, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=8dfa6297891, createdName=3017771_9951, createdTime=Mon Apr 01 10:28:32 CST 2024, time=2024-04-01, status=1, ipAttribution=黑龙江省), GetPortalCommentsPageByObjectIdResponse(id=2118682, encodeId=b3ba21186823b, content=公众号“生存分析”2015年5月27日发布的原理性和实现文章。, beContent=null, objectType=article, channel=null, level=null, likeNumber=35, replyNumber=1, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=https://img.medsci.cn/20221202/2cc4aad5f8f74afda57bd5fba177906c/6325d827ce7142e38fa146b9af211757.jpg, createdBy=1fe25433930, createdName=马兴华 , createdTime=Fri Mar 10 15:38:24 CST 2023, time=2023-03-10, status=1, ipAttribution=广东省), GetPortalCommentsPageByObjectIdResponse(id=951254, encodeId=cf2b9512549f, content=这不是坑么, beContent=null, objectType=article, channel=null, level=null, likeNumber=46, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:16 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951253, encodeId=5b73951253e9, content=在哪里搞积分啊, beContent=null, objectType=article, channel=null, level=null, likeNumber=50, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:09 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=951252, encodeId=32cc95125229, content=积分不足。。。, beContent=null, objectType=article, channel=null, level=null, likeNumber=52, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=fbcb5473255, createdName=ms7000000191761806, createdTime=Thu Mar 25 19:14:01 CST 2021, time=2021-03-25, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1981406, encodeId=dd4019814061f, content=<a href='/topic/show?id=15a8319384a' target=_blank style='color:#2F92EE;'>#列线图#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=39, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31938, encryptionId=15a8319384a, topicName=列线图)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=7931272, createdName=liuli5079, createdTime=Fri Sep 09 02:05:00 CST 2016, time=2016-09-09, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91196, encodeId=0844911967d, content=in 就kninI, beContent=null, objectType=article, channel=null, level=null, likeNumber=126, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=91197, encodeId=11949119e19, content=你I……8?、ki, beContent=null, objectType=article, channel=null, level=null, likeNumber=65, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160923/IMG57E4830D334038805.jpg, createdBy=de81109452, createdName=princekiwi, createdTime=Sun Jun 26 17:28:00 CST 2016, time=2016-06-26, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1487556, encodeId=00dd148e55689, content=<a href='/topic/show?id=1e111292927' target=_blank style='color:#2F92EE;'>#Nomogram#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=41, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12929, encryptionId=1e111292927, topicName=Nomogram)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=28d78317991, createdName=lishiwen, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1585375, encodeId=955a15853e54e, content=<a href='/topic/show?id=2e681208016' target=_blank style='color:#2F92EE;'>#MOG#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=12080, encryptionId=2e681208016, topicName=MOG)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=a85417178370, createdName=Boyinsh, createdTime=Wed Jun 22 14:05:00 CST 2016, time=2016-06-22, status=1, ipAttribution=)]
    2016-06-22 Boyinsh

相关资讯

骨肉瘤预后个体化预测模型列线图的建立

目的 通过对骨肉瘤患者的临床、病理学、影像学及随访资料进行预后因素分析,建立骨肉瘤预后预测模型列线图,并验证其准确度。方法 收集1998至2008年确诊且符合入组标准的235例骨肉瘤患者组成建模组,2009年的55例骨肉瘤患者组成验证组。单因素生存分析采用 Kaplan-Meier法绘制生存曲线,Log-rank法进行统计学分析;应用Cox比例风险模型进行多因素分析,确定独立预后因子;然后应

回归可视化---列线图(nomogram)画法(附R源代码)

Nomogram就是这样一种有效的工具,中文常称为诺莫图或者列线图,其实质就是回归方程的可视化。它根据所有自变量回归系数的大小来制定评分标准,给每个自变量的每种取值水平一个评分,对每个患者,就可计算得到一个总分,再通过得分与结局发生概率之间的转换函数来计算每个患者的结局时间发生的概率。图1就是一个关于COX回归的nomogram,图中points就是一个选定的评分标准或者尺度,对于每个自变量取