Skip to content

Commit 702f925

Browse files
committed
remove debug log
1 parent 20957eb commit 702f925

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

webdriver-ts-results/src/Common.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -502,9 +502,7 @@ export class ResultTableData {
502502
// simple dof
503503
const dof = n1 + n2 - 2;
504504
const t = (x1 - x2) / Math.sqrt(s1_2 / n1 + s2_2 / n2);
505-
console.log(`x1 ${x1} x2 ${x2} s1_2 ${s1_2} s2_2 ${s2_2} n1 ${n1} n2 ${n2} dof ${dof} t ${t}`);
506505
const p = (1.0 - jStat.studentt.cdf(Math.abs(t), dof)) * 2;
507-
console.log(`check 0.975 percentile ${jStat.studentt.cdf(Math.abs(2.048), dof)}`);
508506

509507
const statisticalCol = statisticComputeColor(t, p);
510508
const statisticalResult = (p * 100).toFixed(3) + "%";

0 commit comments

Comments
 (0)