|
|
@@ -44,7 +44,7 @@ public class TruenessEP15Patient extends PVModel {
|
|
|
meanX = StatUtils.mean(x);
|
|
|
meanY = StatUtils.mean(y);
|
|
|
this.n = this.y.length;
|
|
|
- this.sdClaim = configVO.getClaimValue();
|
|
|
+ this.sdClaim = configVO.getClaimValue()[0];
|
|
|
this.rejectionRate = (double)configVO.getRejectionRate()/100;
|
|
|
this.t = getTValue(this.y.length - 1, rejectionRate);
|
|
|
}
|
|
|
@@ -243,7 +243,7 @@ public class TruenessEP15Patient extends PVModel {
|
|
|
// config.put("yAxisLow", -sdClaim);
|
|
|
config.put("data", JSONObject.toJSONString(data, SerializerFeature.DisableCircularReferenceDetect));
|
|
|
chartDTO.setOption(renderChartTemplate(config, 0, "/scatter/linesForRange.ftl"));
|
|
|
- chartDTO.setNote(String.format("%s%d %s","图中实线为平均偏移值",format(bias),getUnits()));
|
|
|
+ chartDTO.setNote(String.format("%s%s %s","图中实线为平均偏移值",format(bias),getUnits()));
|
|
|
return chartDTO;
|
|
|
}
|
|
|
}
|