mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-04 13:13:55 +01:00
Merge branch 'master' into QUEST2
This commit is contained in:
commit
3a382c11b0
@ -295,6 +295,7 @@ draft: false
|
||||
$(row).append(thdoi)
|
||||
const noNanVals = (vals.every((v) => Number.isNaN(v))) ? vals : (vals.filter((v) => !Number.isNaN(v)))
|
||||
const avals = noNanVals.map(v => Math.abs(v))
|
||||
th.clone().text(noNanVals.length).appendTo(row)
|
||||
for (const val of [ss.min(noNanVals), ss.max(noNanVals), ss.mean(noNanVals), ss.mean(avals), ss.median(noNanVals), ss.median(avals), ss.rootMeanSquare(noNanVals), ss.variance(noNanVals), ss.standardDeviation(noNanVals)]) {
|
||||
$("<td/>").text(noNanFixed(val, 2)).appendTo(row)
|
||||
}
|
||||
@ -650,6 +651,7 @@ draft: false
|
||||
<thead class="sticky">
|
||||
<th scope="col">Method</th>
|
||||
<th scope="col">Set</th>
|
||||
<th scope="col">Count</th>
|
||||
<th scope="col">Min</th>
|
||||
<th scope="col">Max</th>
|
||||
<th scope="col">MSE</th>
|
||||
|
Loading…
Reference in New Issue
Block a user