Logistic回归、决策树和支持向量机介绍

2015-12-02 赵屹华 CSDN

分类问题是我们在各个行业的商业业务中遇到的主要问题之一。在本文中,我们将从众多技术中挑选出三种主要技术展开讨论,逻辑回归(Logistic Regression)、决策树(Decision Trees)和支持向量机(Support Vector Machine,SVM)。 上面列出的算法都是用来解决分类问题(SVM和DT也被用于回归,但这不在我们的讨论范围

分类问题是我们在各个行业的商业业务中遇到的主要问题之一。在本文中,我们将从众多技术中挑选出三种主要技术展开讨论,Logistic回归(Logistic Regression)、决策树(Decision Trees)和支持向量机(Support Vector Machine,SVM)。

上面列出的算法都是用来解决分类问题(SVM和DT也被用于回归,但这不在我们的讨论范围之内)。我多次看到有人提问,对于他的问题应该选择哪一种方法。经典的也是最正确的回答是“看情况而定!”,这样的回答却不能让提问者满意。确实让人很费神。因此,我决定谈一谈究竟是看什么情况而定。

这个解释是基于非常简化的二维问题,但足以借此来理解读者棘手的更高维度数据。

我将从最重要的问题开始讨论:在分类问题中我们究竟要做什么?显然,我们是要做分类。(这是个严肃的问题?真的吗?)我再来复述一遍吧。为了做分类,我们试图寻找决策边界线或是一条曲线(不必是直线),在特征空间里区分两个类别。

特征空间这个词听起来非常高大上,容易让很多新人犯迷糊。我给你展示一个例子来解释吧。我有一个样本,它包含三个变量:x1, x2和target。target有0和1两种值,取决于预测变量x1和x2的值。我将数据绘制在坐标轴上。

这就是特征空间,观测值分布于其中。这里因为我们只有两个预测变量/特征,所有特征空间是二维的。你会发现两个类别的样本用不同颜色的点做了标记。我希望我们的算法能计算出一条直线/曲线来分离这个类别。

通过目测可知,理想的决策边界(分割曲线)是一个圆。实际决策边界形状的差异则是由于Logistic回归、决策树和支持向量机算法的差异引起的。

先说逻辑回归。很多人对逻辑回归的决策边界都有误解。这种误解是由于大多数时候提到Logistic回归,人们就见到那条著名的S型曲线。

上图所示的蓝色曲线并不是决策边界。它是Logistic回归模型的二元响应的一种变形。Logistic回归的决策边界总是一条直线(或者一个平面,在更高维度上是超平面)。让你信服的最好方法,就是展示出大家都熟知的Logistic回归方程式。

我们做一个简单的假设,F是所有预测变量的线性组合。

上面的等式也可以写作:

当你进行预测的时候,对概率值做一个分数截断,高于截断值的概率为1,否则为0。假设截断值用c表示,那么决策过程就变成了这样:

Y=1 if p>c, 否则0。最后给出的决策边界是F>常数。

F>常数,无非就是一个线性决策边界。我们样本数据用逻辑回归得到的结果将会是这样。

你会发现效果并不好。因为无论你怎么做,逻辑回归方法得到的决策边界总是线性的,并不能得到这里需要的环状边界。因此,Logistic回归适用于处理接近线性可分的分类问题。(虽然可以对变量做变换得到线性可分的结果,但我们在此不讨论这类情况。)

接着我们来看决策树如何处理这类问题。我们都知道决策树是按照层次结构的规则生成的。以我们的数据为例。

如果你仔细思考,这些决策规则x2 || const OR x1 || const 只是用平行于轴线的直线将特征空间切分,如下图所示。

我们可以通过增加树的大小使它生长得更复杂,用越来越多的分区来模拟环状边界。

哈哈!趋向于环状了,很不错。如果你继续增加树的尺寸,你会注意到决策边界会不断地用平行线围成一个环状区域。因此,如果边界是非线性的,并且能通过不断将特征空间切分为矩形来模拟,那么决策树是比Logistic回归更好的选择。

然后我们再来看看SVM的结果。SVM通过把你的特征空间映射到核空间,使得各个类别线性可分。这个过程更简单的解释就是SVM给特征空间又额外增加了一个维度,使得类别线性可分。这个决策边界映射回原特征空间后得到的是非线性决策边界。下图比我的解释更清楚。

你可以看到,一旦样本数据以某种方式增加了一个维度,我们就能用一个平面来分割数据(线性分类器),这个平面映射回原来的二维特征空间,就能得到一个环状的决策边界。

SVM在我们数据集上的效果多棒啊:

注:决策边界并不是这么标准的圆形,但是非常接近了(可能是多边形)。我们为了操作简便,就用圆环代替了。

现在清楚各种区别了吧,但是还有一个问题。也就是说,在处理多维数据时,什么时候该选择何种算法?这个问题很重要,因为若是数据维度大于三,你就找不到简单的方法来可视化地呈现数据。

原文链接:Logistic Regression Vs Decision Trees Vs SVM: Part I

(译者/赵屹华 审校/刘帝伟、朱正贵 责编/周建丁)


版权声明:
本网站所有内容来源注明为“梅斯医学”或“MedSci原创”的文字、图片和音视频资料,版权均属于梅斯医学所有。非经授权,任何媒体、网站或个人不得转载,授权转载时须注明来源为“梅斯医学”。其它来源的文章系转载文章,或“梅斯号”自媒体发布的文章,仅系出于传递更多信息之目的,本站仅负责审核内容合规,其内容不代表本站立场,本站不负责内容的准确性和版权。如果存在侵权、或不希望被转载的媒体或个人可与我们联系,我们将立即进行删除处理。
在此留言
评论区 (15)
#插入话题
  1. [GetPortalCommentsPageByObjectIdResponse(id=101859, encodeId=5b5e10185902, content=收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=75, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=1b2c1297487, createdName=ghy_happy, createdTime=Sun Aug 21 07:46:00 CST 2016, time=2016-08-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1746732, encodeId=9b941e46732ee, content=<a href='/topic/show?id=88e91099e10' target=_blank style='color:#2F92EE;'>#logistic回归#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10997, encryptionId=88e91099e10, topicName=logistic回归)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=d3c135838005, createdName=xlwang2703, createdTime=Thu Mar 31 04:48:00 CST 2016, time=2016-03-31, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1905761, encodeId=6a9d1905e6112, content=<a href='/topic/show?id=9dc4109964f' target=_blank style='color:#2F92EE;'>#Logistic#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=42, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10996, encryptionId=9dc4109964f, topicName=Logistic)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=afa4194, createdName=cenghis, createdTime=Wed Aug 03 00:48:00 CST 2016, time=2016-08-03, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1983968, encodeId=f32f198396861, content=<a href='/topic/show?id=cf795e0762b' target=_blank style='color:#2F92EE;'>#支持向量机#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=57076, encryptionId=cf795e0762b, topicName=支持向量机)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=4dfa37, createdName=智者为医08, createdTime=Sun Mar 13 09:48:00 CST 2016, time=2016-03-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=56816, encodeId=020856816a8, content=看不懂, beContent=null, objectType=article, channel=null, level=null, likeNumber=129, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160113/IMG569619FEB03536446.jpg, createdBy=85f81678980, createdName=Lynee劲飞扬, createdTime=Wed Jan 13 11:50:00 CST 2016, time=2016-01-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1928349, encodeId=b892192834969, content=<a href='/topic/show?id=71fe3109484' target=_blank style='color:#2F92EE;'>#决策树#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31094, encryptionId=71fe3109484, topicName=决策树)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=560d188, createdName=nymo, createdTime=Fri Oct 21 20:48:00 CST 2016, time=2016-10-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49165, encodeId=cd41491651b, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=107, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49166, encodeId=3b7f49166d9, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=112, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=45498, encodeId=094c4549834, content=没看明白~, beContent=null, objectType=article, channel=null, level=null, likeNumber=88, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83erTP9oVUWrHiclfL5geR2NCXSLjtg125yWTibNzd14bNAII7IA1NeI5maUmDPlCwtjw2xVo6N9OPhYA/132, createdBy=5ec61664926, createdName=southpaw, createdTime=Thu Dec 10 23:13:00 CST 2015, time=2015-12-10, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=44700, encodeId=5b9f44e002c, content=三表一图, beContent=null, objectType=article, channel=null, level=null, likeNumber=80, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=2d331664955, createdName=老段, createdTime=Fri Dec 04 06:56:00 CST 2015, time=2015-12-04, status=1, ipAttribution=)]
    2016-08-21 ghy_happy

    收藏

    0

  2. [GetPortalCommentsPageByObjectIdResponse(id=101859, encodeId=5b5e10185902, content=收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=75, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=1b2c1297487, createdName=ghy_happy, createdTime=Sun Aug 21 07:46:00 CST 2016, time=2016-08-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1746732, encodeId=9b941e46732ee, content=<a href='/topic/show?id=88e91099e10' target=_blank style='color:#2F92EE;'>#logistic回归#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10997, encryptionId=88e91099e10, topicName=logistic回归)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=d3c135838005, createdName=xlwang2703, createdTime=Thu Mar 31 04:48:00 CST 2016, time=2016-03-31, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1905761, encodeId=6a9d1905e6112, content=<a href='/topic/show?id=9dc4109964f' target=_blank style='color:#2F92EE;'>#Logistic#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=42, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10996, encryptionId=9dc4109964f, topicName=Logistic)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=afa4194, createdName=cenghis, createdTime=Wed Aug 03 00:48:00 CST 2016, time=2016-08-03, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1983968, encodeId=f32f198396861, content=<a href='/topic/show?id=cf795e0762b' target=_blank style='color:#2F92EE;'>#支持向量机#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=57076, encryptionId=cf795e0762b, topicName=支持向量机)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=4dfa37, createdName=智者为医08, createdTime=Sun Mar 13 09:48:00 CST 2016, time=2016-03-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=56816, encodeId=020856816a8, content=看不懂, beContent=null, objectType=article, channel=null, level=null, likeNumber=129, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160113/IMG569619FEB03536446.jpg, createdBy=85f81678980, createdName=Lynee劲飞扬, createdTime=Wed Jan 13 11:50:00 CST 2016, time=2016-01-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1928349, encodeId=b892192834969, content=<a href='/topic/show?id=71fe3109484' target=_blank style='color:#2F92EE;'>#决策树#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31094, encryptionId=71fe3109484, topicName=决策树)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=560d188, createdName=nymo, createdTime=Fri Oct 21 20:48:00 CST 2016, time=2016-10-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49165, encodeId=cd41491651b, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=107, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49166, encodeId=3b7f49166d9, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=112, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=45498, encodeId=094c4549834, content=没看明白~, beContent=null, objectType=article, channel=null, level=null, likeNumber=88, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83erTP9oVUWrHiclfL5geR2NCXSLjtg125yWTibNzd14bNAII7IA1NeI5maUmDPlCwtjw2xVo6N9OPhYA/132, createdBy=5ec61664926, createdName=southpaw, createdTime=Thu Dec 10 23:13:00 CST 2015, time=2015-12-10, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=44700, encodeId=5b9f44e002c, content=三表一图, beContent=null, objectType=article, channel=null, level=null, likeNumber=80, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=2d331664955, createdName=老段, createdTime=Fri Dec 04 06:56:00 CST 2015, time=2015-12-04, status=1, ipAttribution=)]
  3. [GetPortalCommentsPageByObjectIdResponse(id=101859, encodeId=5b5e10185902, content=收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=75, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=1b2c1297487, createdName=ghy_happy, createdTime=Sun Aug 21 07:46:00 CST 2016, time=2016-08-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1746732, encodeId=9b941e46732ee, content=<a href='/topic/show?id=88e91099e10' target=_blank style='color:#2F92EE;'>#logistic回归#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10997, encryptionId=88e91099e10, topicName=logistic回归)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=d3c135838005, createdName=xlwang2703, createdTime=Thu Mar 31 04:48:00 CST 2016, time=2016-03-31, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1905761, encodeId=6a9d1905e6112, content=<a href='/topic/show?id=9dc4109964f' target=_blank style='color:#2F92EE;'>#Logistic#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=42, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10996, encryptionId=9dc4109964f, topicName=Logistic)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=afa4194, createdName=cenghis, createdTime=Wed Aug 03 00:48:00 CST 2016, time=2016-08-03, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1983968, encodeId=f32f198396861, content=<a href='/topic/show?id=cf795e0762b' target=_blank style='color:#2F92EE;'>#支持向量机#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=57076, encryptionId=cf795e0762b, topicName=支持向量机)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=4dfa37, createdName=智者为医08, createdTime=Sun Mar 13 09:48:00 CST 2016, time=2016-03-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=56816, encodeId=020856816a8, content=看不懂, beContent=null, objectType=article, channel=null, level=null, likeNumber=129, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160113/IMG569619FEB03536446.jpg, createdBy=85f81678980, createdName=Lynee劲飞扬, createdTime=Wed Jan 13 11:50:00 CST 2016, time=2016-01-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1928349, encodeId=b892192834969, content=<a href='/topic/show?id=71fe3109484' target=_blank style='color:#2F92EE;'>#决策树#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31094, encryptionId=71fe3109484, topicName=决策树)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=560d188, createdName=nymo, createdTime=Fri Oct 21 20:48:00 CST 2016, time=2016-10-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49165, encodeId=cd41491651b, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=107, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49166, encodeId=3b7f49166d9, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=112, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=45498, encodeId=094c4549834, content=没看明白~, beContent=null, objectType=article, channel=null, level=null, likeNumber=88, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83erTP9oVUWrHiclfL5geR2NCXSLjtg125yWTibNzd14bNAII7IA1NeI5maUmDPlCwtjw2xVo6N9OPhYA/132, createdBy=5ec61664926, createdName=southpaw, createdTime=Thu Dec 10 23:13:00 CST 2015, time=2015-12-10, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=44700, encodeId=5b9f44e002c, content=三表一图, beContent=null, objectType=article, channel=null, level=null, likeNumber=80, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=2d331664955, createdName=老段, createdTime=Fri Dec 04 06:56:00 CST 2015, time=2015-12-04, status=1, ipAttribution=)]
    2016-08-03 cenghis
  4. [GetPortalCommentsPageByObjectIdResponse(id=101859, encodeId=5b5e10185902, content=收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=75, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=1b2c1297487, createdName=ghy_happy, createdTime=Sun Aug 21 07:46:00 CST 2016, time=2016-08-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1746732, encodeId=9b941e46732ee, content=<a href='/topic/show?id=88e91099e10' target=_blank style='color:#2F92EE;'>#logistic回归#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10997, encryptionId=88e91099e10, topicName=logistic回归)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=d3c135838005, createdName=xlwang2703, createdTime=Thu Mar 31 04:48:00 CST 2016, time=2016-03-31, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1905761, encodeId=6a9d1905e6112, content=<a href='/topic/show?id=9dc4109964f' target=_blank style='color:#2F92EE;'>#Logistic#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=42, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10996, encryptionId=9dc4109964f, topicName=Logistic)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=afa4194, createdName=cenghis, createdTime=Wed Aug 03 00:48:00 CST 2016, time=2016-08-03, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1983968, encodeId=f32f198396861, content=<a href='/topic/show?id=cf795e0762b' target=_blank style='color:#2F92EE;'>#支持向量机#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=57076, encryptionId=cf795e0762b, topicName=支持向量机)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=4dfa37, createdName=智者为医08, createdTime=Sun Mar 13 09:48:00 CST 2016, time=2016-03-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=56816, encodeId=020856816a8, content=看不懂, beContent=null, objectType=article, channel=null, level=null, likeNumber=129, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160113/IMG569619FEB03536446.jpg, createdBy=85f81678980, createdName=Lynee劲飞扬, createdTime=Wed Jan 13 11:50:00 CST 2016, time=2016-01-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1928349, encodeId=b892192834969, content=<a href='/topic/show?id=71fe3109484' target=_blank style='color:#2F92EE;'>#决策树#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31094, encryptionId=71fe3109484, topicName=决策树)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=560d188, createdName=nymo, createdTime=Fri Oct 21 20:48:00 CST 2016, time=2016-10-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49165, encodeId=cd41491651b, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=107, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49166, encodeId=3b7f49166d9, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=112, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=45498, encodeId=094c4549834, content=没看明白~, beContent=null, objectType=article, channel=null, level=null, likeNumber=88, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83erTP9oVUWrHiclfL5geR2NCXSLjtg125yWTibNzd14bNAII7IA1NeI5maUmDPlCwtjw2xVo6N9OPhYA/132, createdBy=5ec61664926, createdName=southpaw, createdTime=Thu Dec 10 23:13:00 CST 2015, time=2015-12-10, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=44700, encodeId=5b9f44e002c, content=三表一图, beContent=null, objectType=article, channel=null, level=null, likeNumber=80, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=2d331664955, createdName=老段, createdTime=Fri Dec 04 06:56:00 CST 2015, time=2015-12-04, status=1, ipAttribution=)]
  5. [GetPortalCommentsPageByObjectIdResponse(id=101859, encodeId=5b5e10185902, content=收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=75, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=1b2c1297487, createdName=ghy_happy, createdTime=Sun Aug 21 07:46:00 CST 2016, time=2016-08-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1746732, encodeId=9b941e46732ee, content=<a href='/topic/show?id=88e91099e10' target=_blank style='color:#2F92EE;'>#logistic回归#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10997, encryptionId=88e91099e10, topicName=logistic回归)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=d3c135838005, createdName=xlwang2703, createdTime=Thu Mar 31 04:48:00 CST 2016, time=2016-03-31, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1905761, encodeId=6a9d1905e6112, content=<a href='/topic/show?id=9dc4109964f' target=_blank style='color:#2F92EE;'>#Logistic#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=42, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10996, encryptionId=9dc4109964f, topicName=Logistic)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=afa4194, createdName=cenghis, createdTime=Wed Aug 03 00:48:00 CST 2016, time=2016-08-03, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1983968, encodeId=f32f198396861, content=<a href='/topic/show?id=cf795e0762b' target=_blank style='color:#2F92EE;'>#支持向量机#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=57076, encryptionId=cf795e0762b, topicName=支持向量机)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=4dfa37, createdName=智者为医08, createdTime=Sun Mar 13 09:48:00 CST 2016, time=2016-03-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=56816, encodeId=020856816a8, content=看不懂, beContent=null, objectType=article, channel=null, level=null, likeNumber=129, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160113/IMG569619FEB03536446.jpg, createdBy=85f81678980, createdName=Lynee劲飞扬, createdTime=Wed Jan 13 11:50:00 CST 2016, time=2016-01-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1928349, encodeId=b892192834969, content=<a href='/topic/show?id=71fe3109484' target=_blank style='color:#2F92EE;'>#决策树#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31094, encryptionId=71fe3109484, topicName=决策树)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=560d188, createdName=nymo, createdTime=Fri Oct 21 20:48:00 CST 2016, time=2016-10-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49165, encodeId=cd41491651b, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=107, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49166, encodeId=3b7f49166d9, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=112, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=45498, encodeId=094c4549834, content=没看明白~, beContent=null, objectType=article, channel=null, level=null, likeNumber=88, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83erTP9oVUWrHiclfL5geR2NCXSLjtg125yWTibNzd14bNAII7IA1NeI5maUmDPlCwtjw2xVo6N9OPhYA/132, createdBy=5ec61664926, createdName=southpaw, createdTime=Thu Dec 10 23:13:00 CST 2015, time=2015-12-10, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=44700, encodeId=5b9f44e002c, content=三表一图, beContent=null, objectType=article, channel=null, level=null, likeNumber=80, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=2d331664955, createdName=老段, createdTime=Fri Dec 04 06:56:00 CST 2015, time=2015-12-04, status=1, ipAttribution=)]
    2016-01-13 Lynee劲飞扬

    看不懂

    0

  6. [GetPortalCommentsPageByObjectIdResponse(id=101859, encodeId=5b5e10185902, content=收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=75, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=1b2c1297487, createdName=ghy_happy, createdTime=Sun Aug 21 07:46:00 CST 2016, time=2016-08-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1746732, encodeId=9b941e46732ee, content=<a href='/topic/show?id=88e91099e10' target=_blank style='color:#2F92EE;'>#logistic回归#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10997, encryptionId=88e91099e10, topicName=logistic回归)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=d3c135838005, createdName=xlwang2703, createdTime=Thu Mar 31 04:48:00 CST 2016, time=2016-03-31, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1905761, encodeId=6a9d1905e6112, content=<a href='/topic/show?id=9dc4109964f' target=_blank style='color:#2F92EE;'>#Logistic#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=42, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10996, encryptionId=9dc4109964f, topicName=Logistic)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=afa4194, createdName=cenghis, createdTime=Wed Aug 03 00:48:00 CST 2016, time=2016-08-03, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1983968, encodeId=f32f198396861, content=<a href='/topic/show?id=cf795e0762b' target=_blank style='color:#2F92EE;'>#支持向量机#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=57076, encryptionId=cf795e0762b, topicName=支持向量机)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=4dfa37, createdName=智者为医08, createdTime=Sun Mar 13 09:48:00 CST 2016, time=2016-03-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=56816, encodeId=020856816a8, content=看不懂, beContent=null, objectType=article, channel=null, level=null, likeNumber=129, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160113/IMG569619FEB03536446.jpg, createdBy=85f81678980, createdName=Lynee劲飞扬, createdTime=Wed Jan 13 11:50:00 CST 2016, time=2016-01-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1928349, encodeId=b892192834969, content=<a href='/topic/show?id=71fe3109484' target=_blank style='color:#2F92EE;'>#决策树#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31094, encryptionId=71fe3109484, topicName=决策树)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=560d188, createdName=nymo, createdTime=Fri Oct 21 20:48:00 CST 2016, time=2016-10-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49165, encodeId=cd41491651b, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=107, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49166, encodeId=3b7f49166d9, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=112, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=45498, encodeId=094c4549834, content=没看明白~, beContent=null, objectType=article, channel=null, level=null, likeNumber=88, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83erTP9oVUWrHiclfL5geR2NCXSLjtg125yWTibNzd14bNAII7IA1NeI5maUmDPlCwtjw2xVo6N9OPhYA/132, createdBy=5ec61664926, createdName=southpaw, createdTime=Thu Dec 10 23:13:00 CST 2015, time=2015-12-10, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=44700, encodeId=5b9f44e002c, content=三表一图, beContent=null, objectType=article, channel=null, level=null, likeNumber=80, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=2d331664955, createdName=老段, createdTime=Fri Dec 04 06:56:00 CST 2015, time=2015-12-04, status=1, ipAttribution=)]
    2016-10-21 nymo
  7. [GetPortalCommentsPageByObjectIdResponse(id=101859, encodeId=5b5e10185902, content=收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=75, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=1b2c1297487, createdName=ghy_happy, createdTime=Sun Aug 21 07:46:00 CST 2016, time=2016-08-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1746732, encodeId=9b941e46732ee, content=<a href='/topic/show?id=88e91099e10' target=_blank style='color:#2F92EE;'>#logistic回归#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10997, encryptionId=88e91099e10, topicName=logistic回归)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=d3c135838005, createdName=xlwang2703, createdTime=Thu Mar 31 04:48:00 CST 2016, time=2016-03-31, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1905761, encodeId=6a9d1905e6112, content=<a href='/topic/show?id=9dc4109964f' target=_blank style='color:#2F92EE;'>#Logistic#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=42, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10996, encryptionId=9dc4109964f, topicName=Logistic)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=afa4194, createdName=cenghis, createdTime=Wed Aug 03 00:48:00 CST 2016, time=2016-08-03, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1983968, encodeId=f32f198396861, content=<a href='/topic/show?id=cf795e0762b' target=_blank style='color:#2F92EE;'>#支持向量机#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=57076, encryptionId=cf795e0762b, topicName=支持向量机)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=4dfa37, createdName=智者为医08, createdTime=Sun Mar 13 09:48:00 CST 2016, time=2016-03-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=56816, encodeId=020856816a8, content=看不懂, beContent=null, objectType=article, channel=null, level=null, likeNumber=129, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160113/IMG569619FEB03536446.jpg, createdBy=85f81678980, createdName=Lynee劲飞扬, createdTime=Wed Jan 13 11:50:00 CST 2016, time=2016-01-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1928349, encodeId=b892192834969, content=<a href='/topic/show?id=71fe3109484' target=_blank style='color:#2F92EE;'>#决策树#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31094, encryptionId=71fe3109484, topicName=决策树)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=560d188, createdName=nymo, createdTime=Fri Oct 21 20:48:00 CST 2016, time=2016-10-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49165, encodeId=cd41491651b, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=107, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49166, encodeId=3b7f49166d9, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=112, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=45498, encodeId=094c4549834, content=没看明白~, beContent=null, objectType=article, channel=null, level=null, likeNumber=88, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83erTP9oVUWrHiclfL5geR2NCXSLjtg125yWTibNzd14bNAII7IA1NeI5maUmDPlCwtjw2xVo6N9OPhYA/132, createdBy=5ec61664926, createdName=southpaw, createdTime=Thu Dec 10 23:13:00 CST 2015, time=2015-12-10, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=44700, encodeId=5b9f44e002c, content=三表一图, beContent=null, objectType=article, channel=null, level=null, likeNumber=80, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=2d331664955, createdName=老段, createdTime=Fri Dec 04 06:56:00 CST 2015, time=2015-12-04, status=1, ipAttribution=)]
    2015-12-27 hixiaoluo

    好文章,值得收藏

    0

  8. [GetPortalCommentsPageByObjectIdResponse(id=101859, encodeId=5b5e10185902, content=收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=75, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=1b2c1297487, createdName=ghy_happy, createdTime=Sun Aug 21 07:46:00 CST 2016, time=2016-08-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1746732, encodeId=9b941e46732ee, content=<a href='/topic/show?id=88e91099e10' target=_blank style='color:#2F92EE;'>#logistic回归#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10997, encryptionId=88e91099e10, topicName=logistic回归)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=d3c135838005, createdName=xlwang2703, createdTime=Thu Mar 31 04:48:00 CST 2016, time=2016-03-31, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1905761, encodeId=6a9d1905e6112, content=<a href='/topic/show?id=9dc4109964f' target=_blank style='color:#2F92EE;'>#Logistic#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=42, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10996, encryptionId=9dc4109964f, topicName=Logistic)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=afa4194, createdName=cenghis, createdTime=Wed Aug 03 00:48:00 CST 2016, time=2016-08-03, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1983968, encodeId=f32f198396861, content=<a href='/topic/show?id=cf795e0762b' target=_blank style='color:#2F92EE;'>#支持向量机#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=57076, encryptionId=cf795e0762b, topicName=支持向量机)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=4dfa37, createdName=智者为医08, createdTime=Sun Mar 13 09:48:00 CST 2016, time=2016-03-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=56816, encodeId=020856816a8, content=看不懂, beContent=null, objectType=article, channel=null, level=null, likeNumber=129, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160113/IMG569619FEB03536446.jpg, createdBy=85f81678980, createdName=Lynee劲飞扬, createdTime=Wed Jan 13 11:50:00 CST 2016, time=2016-01-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1928349, encodeId=b892192834969, content=<a href='/topic/show?id=71fe3109484' target=_blank style='color:#2F92EE;'>#决策树#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31094, encryptionId=71fe3109484, topicName=决策树)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=560d188, createdName=nymo, createdTime=Fri Oct 21 20:48:00 CST 2016, time=2016-10-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49165, encodeId=cd41491651b, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=107, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49166, encodeId=3b7f49166d9, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=112, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=45498, encodeId=094c4549834, content=没看明白~, beContent=null, objectType=article, channel=null, level=null, likeNumber=88, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83erTP9oVUWrHiclfL5geR2NCXSLjtg125yWTibNzd14bNAII7IA1NeI5maUmDPlCwtjw2xVo6N9OPhYA/132, createdBy=5ec61664926, createdName=southpaw, createdTime=Thu Dec 10 23:13:00 CST 2015, time=2015-12-10, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=44700, encodeId=5b9f44e002c, content=三表一图, beContent=null, objectType=article, channel=null, level=null, likeNumber=80, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=2d331664955, createdName=老段, createdTime=Fri Dec 04 06:56:00 CST 2015, time=2015-12-04, status=1, ipAttribution=)]
    2015-12-27 hixiaoluo

    好文章,值得收藏

    0

  9. [GetPortalCommentsPageByObjectIdResponse(id=101859, encodeId=5b5e10185902, content=收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=75, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=1b2c1297487, createdName=ghy_happy, createdTime=Sun Aug 21 07:46:00 CST 2016, time=2016-08-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1746732, encodeId=9b941e46732ee, content=<a href='/topic/show?id=88e91099e10' target=_blank style='color:#2F92EE;'>#logistic回归#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10997, encryptionId=88e91099e10, topicName=logistic回归)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=d3c135838005, createdName=xlwang2703, createdTime=Thu Mar 31 04:48:00 CST 2016, time=2016-03-31, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1905761, encodeId=6a9d1905e6112, content=<a href='/topic/show?id=9dc4109964f' target=_blank style='color:#2F92EE;'>#Logistic#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=42, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10996, encryptionId=9dc4109964f, topicName=Logistic)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=afa4194, createdName=cenghis, createdTime=Wed Aug 03 00:48:00 CST 2016, time=2016-08-03, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1983968, encodeId=f32f198396861, content=<a href='/topic/show?id=cf795e0762b' target=_blank style='color:#2F92EE;'>#支持向量机#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=57076, encryptionId=cf795e0762b, topicName=支持向量机)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=4dfa37, createdName=智者为医08, createdTime=Sun Mar 13 09:48:00 CST 2016, time=2016-03-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=56816, encodeId=020856816a8, content=看不懂, beContent=null, objectType=article, channel=null, level=null, likeNumber=129, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160113/IMG569619FEB03536446.jpg, createdBy=85f81678980, createdName=Lynee劲飞扬, createdTime=Wed Jan 13 11:50:00 CST 2016, time=2016-01-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1928349, encodeId=b892192834969, content=<a href='/topic/show?id=71fe3109484' target=_blank style='color:#2F92EE;'>#决策树#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31094, encryptionId=71fe3109484, topicName=决策树)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=560d188, createdName=nymo, createdTime=Fri Oct 21 20:48:00 CST 2016, time=2016-10-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49165, encodeId=cd41491651b, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=107, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49166, encodeId=3b7f49166d9, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=112, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=45498, encodeId=094c4549834, content=没看明白~, beContent=null, objectType=article, channel=null, level=null, likeNumber=88, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83erTP9oVUWrHiclfL5geR2NCXSLjtg125yWTibNzd14bNAII7IA1NeI5maUmDPlCwtjw2xVo6N9OPhYA/132, createdBy=5ec61664926, createdName=southpaw, createdTime=Thu Dec 10 23:13:00 CST 2015, time=2015-12-10, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=44700, encodeId=5b9f44e002c, content=三表一图, beContent=null, objectType=article, channel=null, level=null, likeNumber=80, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=2d331664955, createdName=老段, createdTime=Fri Dec 04 06:56:00 CST 2015, time=2015-12-04, status=1, ipAttribution=)]
    2015-12-10 southpaw

    没看明白~

    0

  10. [GetPortalCommentsPageByObjectIdResponse(id=101859, encodeId=5b5e10185902, content=收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=75, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=1b2c1297487, createdName=ghy_happy, createdTime=Sun Aug 21 07:46:00 CST 2016, time=2016-08-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1746732, encodeId=9b941e46732ee, content=<a href='/topic/show?id=88e91099e10' target=_blank style='color:#2F92EE;'>#logistic回归#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10997, encryptionId=88e91099e10, topicName=logistic回归)], attachment=null, authenticateStatus=null, createdAvatar=null, createdBy=d3c135838005, createdName=xlwang2703, createdTime=Thu Mar 31 04:48:00 CST 2016, time=2016-03-31, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1905761, encodeId=6a9d1905e6112, content=<a href='/topic/show?id=9dc4109964f' target=_blank style='color:#2F92EE;'>#Logistic#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=42, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=10996, encryptionId=9dc4109964f, topicName=Logistic)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=afa4194, createdName=cenghis, createdTime=Wed Aug 03 00:48:00 CST 2016, time=2016-08-03, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1983968, encodeId=f32f198396861, content=<a href='/topic/show?id=cf795e0762b' target=_blank style='color:#2F92EE;'>#支持向量机#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=30, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=57076, encryptionId=cf795e0762b, topicName=支持向量机)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=4dfa37, createdName=智者为医08, createdTime=Sun Mar 13 09:48:00 CST 2016, time=2016-03-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=56816, encodeId=020856816a8, content=看不懂, beContent=null, objectType=article, channel=null, level=null, likeNumber=129, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://cacheapi.medsci.cn/resource/upload/20160113/IMG569619FEB03536446.jpg, createdBy=85f81678980, createdName=Lynee劲飞扬, createdTime=Wed Jan 13 11:50:00 CST 2016, time=2016-01-13, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=1928349, encodeId=b892192834969, content=<a href='/topic/show?id=71fe3109484' target=_blank style='color:#2F92EE;'>#决策树#</a>, beContent=null, objectType=article, channel=null, level=null, likeNumber=34, replyNumber=0, topicName=null, topicId=null, topicList=[TopicDto(id=31094, encryptionId=71fe3109484, topicName=决策树)], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=560d188, createdName=nymo, createdTime=Fri Oct 21 20:48:00 CST 2016, time=2016-10-21, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49165, encodeId=cd41491651b, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=107, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=49166, encodeId=3b7f49166d9, content=好文章,值得收藏, beContent=null, objectType=article, channel=null, level=null, likeNumber=112, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=bc301610909, createdName=hixiaoluo, createdTime=Sun Dec 27 09:13:00 CST 2015, time=2015-12-27, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=45498, encodeId=094c4549834, content=没看明白~, beContent=null, objectType=article, channel=null, level=null, likeNumber=88, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83erTP9oVUWrHiclfL5geR2NCXSLjtg125yWTibNzd14bNAII7IA1NeI5maUmDPlCwtjw2xVo6N9OPhYA/132, createdBy=5ec61664926, createdName=southpaw, createdTime=Thu Dec 10 23:13:00 CST 2015, time=2015-12-10, status=1, ipAttribution=), GetPortalCommentsPageByObjectIdResponse(id=44700, encodeId=5b9f44e002c, content=三表一图, beContent=null, objectType=article, channel=null, level=null, likeNumber=80, replyNumber=0, topicName=null, topicId=null, topicList=[], attachment=null, authenticateStatus=null, createdAvatar=, createdBy=2d331664955, createdName=老段, createdTime=Fri Dec 04 06:56:00 CST 2015, time=2015-12-04, status=1, ipAttribution=)]
    2015-12-04 老段

    三表一图

    0

相关资讯

七种常见的回归分析技术,助力建模和数据分析

回归分析是建模和分析数据的重要工具。本文解释了回归分析的内涵及其优势,重点总结了应该掌握的线性回归、逻辑回归、多项式回归、逐步回归、岭回归、套索回归、ElasticNet回归等七种最常用的回归技术及其关键要素,最后介绍了选择正确的回归模型的关键因素。 什么是回归分析? 回归分析是一种预测性的建模技术,它研究的是因变量(目标)和自变量(预测器)之间的关系。这种技术通常用于预测分析,时间序列模

《医》纪录片第五集《回归》

TA们,每天与病魔《激战》; TA们,给痛苦和绝望中的人一个《暖春》; TA们,为千万人付出毕生《心血》; TA们,过眼人间百态《视界》;TA们,只期盼最纯粹的《回归》。 还原新闻背后的医生群像,倾听最真实的医声。 理解,从这一刻开始... 第五集《回归》讲述上海远大心胸医院程云阁医生回归职业本源的心路历程。

统计方法选用手册

一、 两组或多组计量资料的比较1.两组资料:1)大样本资料或服从正态分布的小样本资料(1)若方差齐性,则作成组t检验(2)若方差不齐,则作t’检验或用成组的Wilcoxon秩和检验2)小样本偏态分布资料,则用成组的Wilcoxon秩和检验2.多组资料:1)若大样本资料或服从正态分布,并且方差齐性,则作完全随机的方差分析。如果方差分析的统计检验为有统计学意义,则进一步作统计分析:选择合适的方法(

偏最小二乘回归在医学统计学中的应用

偏最小二乘回归是一种新型的多元统计数据分析方法,它与1983年由伍德和阿巴诺等人首次提出。近十年来,它在理论、方法和应用方面都得到了迅速的发展。密西根大学的弗耐尔教授称偏最小二乘回归为第二代回归分析方法。 偏最小二乘回归方法在统计应用中的重要性主要的有以下几个方面: (1)偏最小二乘回归是一种多因变量对多自变量的回归建模方法。 (2)偏最小二乘回归可以较好地解决许多以往用普通多元回归无法解决

SPSS 17.0中如何安装偏最小二乘回归(PLS)模块

不过,在SPSS 22.0中已默认安装了,不必再次安装了。在数据处理中需要在SPSS中用到偏最小二乘回归(Partial Least Squares Regression,PLS)功能,要安装PLS插件,在各个论坛上查找了很多资料,但是发现介绍的都不够具体,导致在装过以后运行的过程中出错。同时,相关软件报错,不能正确安装。同时SPSS被IBM收购,也给同学们带来不好麻烦。 其中偏最小二乘

在线课堂:Logistic回归统计系列课程

在统计学中Logistic回归占据着重要的位置,尤其是在临床研究中,Logistic回归一直备受关注。Logistic回归又称Logistic回归分析,主要在流行病学中应用较多,比较常用的情形是探索某疾病的危险因素,根据危险因素预测某疾病发生的概率等。