Skip to content

Commit d9f1d58

Browse files
authored
Tweaked plutus regression (#516)
1 parent e36422d commit d9f1d58

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

analysis/timings/ReadMe.ipynb

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1382,23 +1382,23 @@
13821382
"text/plain": [
13831383
"\n",
13841384
"Call:\n",
1385-
"lm(formula = `Apply CPU [ms]`/`Tx count` ~ `Tx exec [step]`, \n",
1385+
"lm(formula = `Apply CPU [ms]` ~ 0 + `Tx count` + `Tx exec [step]`, \n",
13861386
" data = timings[`Tx count` > 0 & `Apply CPU [ms]` <= timeLimit])\n",
13871387
"\n",
13881388
"Residuals:\n",
1389-
" Min 1Q Median 3Q Max \n",
1390-
"-0.577 -0.242 -0.103 0.113 31.825 \n",
1389+
" Min 1Q Median 3Q Max \n",
1390+
"-54.793 -0.366 0.428 1.682 31.886 \n",
13911391
"\n",
13921392
"Coefficients:\n",
13931393
" Estimate Std. Error t value Pr(>|t|) \n",
1394-
"(Intercept) 6.006e-01 2.799e-04 2146 <2e-16 ***\n",
1395-
"`Tx exec [step]` 5.765e-12 5.763e-14 100 <2e-16 ***\n",
1394+
"`Tx count` 2.624e-01 1.318e-04 1991 <2e-16 ***\n",
1395+
"`Tx exec [step]` 9.487e-10 5.400e-13 1757 <2e-16 ***\n",
13961396
"---\n",
13971397
"Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1\n",
13981398
"\n",
1399-
"Residual standard error: 0.4184 on 4342017 degrees of freedom\n",
1400-
"Multiple R-squared: 0.002299,\tAdjusted R-squared: 0.002299 \n",
1401-
"F-statistic: 1.001e+04 on 1 and 4342017 DF, p-value: < 2.2e-16\n"
1399+
"Residual standard error: 3.003 on 4342017 degrees of freedom\n",
1400+
"Multiple R-squared: 0.9077,\tAdjusted R-squared: 0.9077 \n",
1401+
"F-statistic: 2.136e+07 on 2 and 4342017 DF, p-value: < 2.2e-16\n"
14021402
]
14031403
},
14041404
"metadata": {},
@@ -1407,7 +1407,7 @@
14071407
],
14081408
"source": [
14091409
"model <- lm(\n",
1410-
" `Apply CPU [ms]` / `Tx count` ~ `Tx exec [step]`, \n",
1410+
" `Apply CPU [ms]` ~ 0 + `Tx count` + `Tx exec [step]`, \n",
14111411
" timings[`Tx count` > 0 & `Apply CPU [ms]` <= timeLimit]\n",
14121412
")\n",
14131413
"model %>% summary"

0 commit comments

Comments
 (0)