(Vec data)
| 49 | |
| 50 | |
| 51 | public void setTestUsingData(Vec data) |
| 52 | { |
| 53 | this.sampleMean = data.mean(); |
| 54 | this.sampleDev = data.standardDeviation(); |
| 55 | this.sampleSize = data.length(); |
| 56 | tDist.setDf(sampleSize-1); |
| 57 | } |
| 58 | |
| 59 | public String[] getTestVars() |
| 60 | { |
nothing calls this directly
no test coverage detected