The following document contains the results of PMD's CPD 6.4.0.
| File | Line | 
|---|---|
| org\opentrafficsim\water\statistics\XPersistent.java | 156 | 
| org\opentrafficsim\water\statistics\XTally.java | 291 | 
        row.createCell(2).setCellValue("tijdgewogen [n, gem, stdev, min, max]");
        row.createCell(3).setCellValue(getN());
        if (getN() > 0)
        {
            row.createCell(4).setCellValue(getSampleMean());
            row.getCell(4).setCellStyle(style);
            if (getN() > 1 && !Double.isNaN(getStdDev()))
            {
                row.createCell(5).setCellValue(getStdDev());
                row.getCell(5).setCellStyle(style);
            }
            row.createCell(6).setCellValue(getMin());
            row.getCell(6).setCellStyle(style);
            row.createCell(7).setCellValue(getMax());
            row.getCell(7).setCellStyle(style);
        }
        return rownr + 1;
    } | |