Skip to content

Commit

Permalink
Updated examples
Browse files Browse the repository at this point in the history
  • Loading branch information
bwbush committed Dec 23, 2024
1 parent 7cbd290 commit f9069d9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/01 - Introduction.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,8 @@
"source": [
"o8 = o7 .>>. o7\n",
"(\"bounds o8\", asFloat <$> earliest o8, asFloat <$> deadline o8)\n",
"(\"median o8\", asFloat <$> quantile 0.5 o8)\n",
"(\"90th centile o8\", asFloat <$> quantile 0.9 o8)\n",
"(\"median o8\", asFloat <$> quantile o8 0.5)\n",
"(\"90th centile o8\", asFloat <$> quantile o8 0.9)\n",
"(\"prob. within 3.5s\", asFloat $ successWithin o8 3.5)"
]
},
Expand Down Expand Up @@ -1185,8 +1185,8 @@
"o9 = choice 0.75 o8 never\n",
"\n",
"(\"bounds o9\", asFloat <$> earliest o9, asFloat <$> deadline o9)\n",
"(\"median o9\", asFloat <$> quantile 0.5 o9)\n",
"(\"90th centile o9\", asFloat <$> quantile 0.9 o9)\n",
"(\"median o9\", asFloat <$> quantile o9 0.5)\n",
"(\"90th centile o9\", asFloat <$> quantile o9 0.9)\n",
"(\"prob. within 3.5s\", asFloat $ successWithin o9 3.5)"
]
},
Expand Down Expand Up @@ -2123,8 +2123,8 @@
"source": [
"o10 = o9 `firstToFinish` wait 5\n",
"(\"bounds o10\", asFloat <$> earliest o10, asFloat <$> deadline o10)\n",
"(\"median o10\", asFloat <$> quantile 0.5 o10)\n",
"(\"90th centile o10\", asFloat <$> quantile 0.9 o10)\n",
"(\"median o10\", asFloat <$> quantile o10 0.5)\n",
"(\"90th centile o10\", asFloat <$> quantile o10 0.9)\n",
"(\"prob. within 3.5s\", asFloat $ successWithin o10 3.5)\n",
"toRenderable $ plotCDFWithQuantiles \"o10 with quantiles\" [0.25, 0.5, 0.75, 0.9] o10"
]
Expand Down

0 comments on commit f9069d9

Please sign in to comment.