DiagnosisMed friends,<br><br>Finally we are getting some requests about the functions available in the package. Therefore, It would be nice if we get used to share this informations in the diagnosismed email list. <br><br>
As in earlier emails the ROC function in the packages has a error in the AUC confidence limist. It did come to my attention in late december. This week two emails from users came quastioning about the AUC and its confidence limists. Tura proposed a fix. However the fix gave me some errors when I runned the function. There goes...<br>
<br><span style="font-family: courier new,monospace;"># gold is the vector meneaning the reference standard e test is the test under evaluarion</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; if (is.numeric(gold)==TRUE){</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; # Making test summary, overall, disease only, without disease only</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; test.summary&lt;-round(c(summary(test),sd(test)),digits=5)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; test.summary&lt;-rbind(test.summary,round(c(summary(test[gold==0]),sd(test[gold==0])),digits=5))</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; test.summary&lt;-rbind(test.summary,round(c(summary(test[gold==1]),sd(test[gold==1])),digits=5))</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; colnames(test.summary)&lt;-c(&quot;Min.&quot;,&quot;1st Qu.&quot;,&quot;Median&quot;,&quot;Mean&quot;,&quot;3rd Qu.&quot;,&quot;Max.&quot;,&quot;SD&quot;)</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; rownames(test.summary)&lt;-c(&quot;Overall summary&quot;,&quot;Without disease&quot;, &quot;With disease&quot;)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; # Estimating the AUC and confidence limits, inspired in auc{PresenceAbsence}</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; # m length(test[gold == 0])</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; # n length(test[gold == 1])</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; AUC &lt;- ((as.double(length(test[gold == 0]))) * (as.double(length(test[gold ==</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1]))) + ((as.double(length(test[gold == 0]))) * ((as.double(length(</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; test[gold == 0]))) + 1))/2 - sum(rank(test,ties.method = &quot;average&quot;)[</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; gold == 0]))/((as.double(length(test[gold == 0]))) * (as.double(</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; length(test[gold == 1]))))</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; AUC[AUC &lt; 0.5] &lt;- 1 - AUC</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; X&lt;-test[gold==1] # pag 209</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; Y&lt;-test[gold==1] # pag 209</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; }</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"># The same as before just with different codes in the variables </span><br style="font-family: courier new,monospace;">
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; if (is.factor(gold)==TRUE){</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; # The same tests summary but with different reference standard codes</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; test.summary&lt;-round(c(summary(test),sd(test)),digits=5)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; test.summary&lt;-rbind(test.summary,round(c(summary(test[gold==&quot;negative&quot;]),sd(test[gold==&quot;negative&quot;])),digits=5))</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; test.summary&lt;-rbind(test.summary,round(c(summary(test[gold==&quot;positive&quot;]),sd(test[gold==&quot;positive&quot;])),digits=5))</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; colnames(test.summary)&lt;-c(&quot;Min.&quot;,&quot;1st Qu.&quot;,&quot;Median&quot;,&quot;Mean&quot;,&quot;3rd Qu.&quot;,&quot;Max.&quot;,&quot;SD&quot;)</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; rownames(test.summary)&lt;-c(&quot;Overall summary&quot;,&quot;Without disease&quot;, &quot;With disease&quot;)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; AUC &lt;- ((as.double(length(test[gold ==&quot;negative&quot;]))) * (as.double(length(test[gold ==</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;positive&quot;]))) + ((as.double(length(test[gold ==&quot;negative&quot;]))) * ((as.double(length(</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; test[gold ==&quot;negative&quot;]))) + 1))/2 - sum(rank(test,ties.method = &quot;average&quot;)[</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; gold ==&quot;negative&quot;]))/((as.double(length(test[gold ==&quot;negative&quot;]))) * (as.double(</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; length(test[gold == &quot;positive&quot;]))))</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; AUC[AUC &lt; 0.5] &lt;- 1 - AUC</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; X&lt;-test[gold==&quot;negative&quot;] # pag 209</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; Y&lt;-test[gold==&quot;positive&quot;] # pag 209</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; }</span><br style="font-family: courier new,monospace;">
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"># Here is the fix </span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; m&lt;-length(X) # pag 209</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; n&lt;-length(Y) # pag 209</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; D10X&lt;-function(Xi){(1/n)*sum(Y&gt;=Xi)} # pag 211</span>&nbsp;<u><b> I believe the error is here</b></u> although not sure<br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; DO1Y&lt;-function(Yi){(1/m)*sum(Yi&gt;=X)} # pag 211</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; VAR.AUC&lt;-sum((tapply(X,X,&quot;D10X&quot;)-AUC)^2)/(m*(m-1))+sum((tapply(Y,Y,&quot;D10X&quot;)-AUC)^2)/(n*(n-1)) # pag 211</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; SD.AUC&lt;-sqrt(VAR.AUC)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; alpha&lt;-1-CL</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; AUC.summary&lt;-c(AUC- qnorm(1-alpha/2)*SD.AUC,AUC,AUC+ qnorm(1-alpha/2)*SD.AUC)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp; names(AUC.summary)&lt;-c(&quot;AUC inf conf limit&quot;, &quot;AUC&quot;,&quot;AUC sup conf limit&quot;)</span><br style="font-family: courier new,monospace;" clear="all">
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"># here is the output and the error below. the graph comes OK... </span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&gt; ROC(rocdata$Gold,rocdata$test1)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">$pop.prevalence</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">Informed disease prevalence - same as sample prevalence if not informed </span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.3445946 </span><br style="font-family: courier new,monospace;">
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">$sample.size</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">[1] 148</span><br style="font-family: courier new,monospace;">
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">$sample.prevalence</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">Observed prevalence by gold standard </span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.3445946 </span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">$test.summary</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Min. 1st Qu. Median&nbsp;&nbsp; Mean 3rd Qu.&nbsp; Max.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SD</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">Overall summary 0.056&nbsp;&nbsp; 0.102 0.1315 0.3835&nbsp; 0.6312 1.914 0.39349</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">Without disease 0.056&nbsp;&nbsp; 0.098 0.1110 0.1590&nbsp; 0.1330 0.837 0.15833</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">With disease&nbsp;&nbsp;&nbsp; 0.098&nbsp;&nbsp; 0.557 0.7950 0.8106&nbsp; 1.0490 1.914 0.35106</span><br style="font-family: courier new,monospace;">
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">$AUC.summary</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">AUC inf conf limit&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AUC AUC sup conf limit </span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.7545496&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9540125&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1.1534755 </span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">$test.best.cutoff</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; best.cutoff Sensitivity <a href="http://Se.inf.cl">Se.inf.cl</a> <a href="http://Se.sup.cl">Se.sup.cl</a> Specificity <a href="http://Sp.inf.cl">Sp.inf.cl</a> <a href="http://Sp.sup.cl">Sp.sup.cl</a>&nbsp;&nbsp; PLR <a href="http://PLR.inf.cl">PLR.inf.cl</a> <a href="http://PLR.sup.cl">PLR.sup.cl</a></span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">Max. Accuracy&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.365&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9216&nbsp;&nbsp;&nbsp; 0.8150&nbsp;&nbsp;&nbsp; 0.9691&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9278&nbsp;&nbsp;&nbsp; 0.8585&nbsp;&nbsp;&nbsp; 0.9646 12.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 34.36</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">Max. DOR&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.275&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9608&nbsp;&nbsp;&nbsp; 0.8678&nbsp;&nbsp;&nbsp; 0.9892&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.8969&nbsp;&nbsp;&nbsp; 0.8205&nbsp;&nbsp;&nbsp; 0.9430&nbsp; 9.32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4.13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 21.05</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">Min. Error rate&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.365&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9216&nbsp;&nbsp;&nbsp; 0.8150&nbsp;&nbsp;&nbsp; 0.9691&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9278&nbsp;&nbsp;&nbsp; 0.8585&nbsp;&nbsp;&nbsp; 0.9646 12.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 34.36</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">Max. Accuracy area&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.275&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9608&nbsp;&nbsp;&nbsp; 0.8678&nbsp;&nbsp;&nbsp; 0.9892&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.8969&nbsp;&nbsp;&nbsp; 0.8205&nbsp;&nbsp;&nbsp; 0.9430&nbsp; 9.32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4.13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 21.05</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">Max. Sens+Spec&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.275&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9608&nbsp;&nbsp;&nbsp; 0.8678&nbsp;&nbsp;&nbsp; 0.9892&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.8969&nbsp;&nbsp;&nbsp; 0.8205&nbsp;&nbsp;&nbsp; 0.9430&nbsp; 9.32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4.13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 21.05</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">Max. Youden&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.275&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9608&nbsp;&nbsp;&nbsp; 0.8678&nbsp;&nbsp;&nbsp; 0.9892&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.8969&nbsp;&nbsp;&nbsp; 0.8205&nbsp;&nbsp;&nbsp; 0.9430&nbsp; 9.32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4.13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 21.05</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">Se=Sp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.356&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9216&nbsp;&nbsp;&nbsp; 0.8150&nbsp;&nbsp;&nbsp; 0.9691&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9175&nbsp;&nbsp;&nbsp; 0.8456&nbsp;&nbsp;&nbsp; 0.9576 11.17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4.44&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 28.08</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">Min. ROC distance&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.365&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9216&nbsp;&nbsp;&nbsp; 0.8150&nbsp;&nbsp;&nbsp; 0.9691&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9278&nbsp;&nbsp;&nbsp; 0.8585&nbsp;&nbsp;&nbsp; 0.9646 12.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 34.36</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">Max. Efficiency&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.365&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9216&nbsp;&nbsp;&nbsp; 0.8150&nbsp;&nbsp;&nbsp; 0.9691&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9278&nbsp;&nbsp;&nbsp; 0.8585&nbsp;&nbsp;&nbsp; 0.9646 12.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 34.36</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">Min. MCT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.365&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9216&nbsp;&nbsp;&nbsp; 0.8150&nbsp;&nbsp;&nbsp; 0.9691&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9278&nbsp;&nbsp;&nbsp; 0.8585&nbsp;&nbsp;&nbsp; 0.9646 12.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 34.36</span><br style="font-family: courier new,monospace;">
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">Warning messages:</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">1: In Y &gt;= Xi :</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; longer object length is not a multiple of shorter object length</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">2: In Y &gt;= Xi :</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; longer object length is not a multiple of shorter object length</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">3: In Y &gt;= Xi :</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; longer object length is not a multiple of shorter object length</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">4: In Y &gt;= Xi :</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; longer object length is not a multiple of shorter object length</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">5: In Y &gt;= Xi :</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; longer object length is not a multiple of shorter object length</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">6: In Y &gt;= Xi :</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp; longer object length is not a multiple of shorter object length</span><br><br># Besides I would expect the interval to come closer to something like 0,907 and 0,982 as some other analsys I did way before and comparing with some other software. It seems weird AUC conf limist wider than the upper limit 1. <br>
<br><br><br>-- <br>Abraço forte e que a força esteja com você,<br>Pedro Emmanuel<br>