Skip to content

Commit fde0deb

Browse files
Auto-merge claude/fix-layout-ffffs-box-2m16N after successful build
2 parents 4cc493c + 62080e7 commit fde0deb

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

chapter_07.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -999,10 +999,10 @@ ax.text(0.5, 0.185, r"(Each trial is independent)",
999999
# Arrow pointing to decreasing probabilities
10001000
x0, y0, x1, y1 = seq_boxes["S"]
10011001
ax.annotate("Most likely:\nsucceed early",
1002-
xy=((x0 + x1)/2, y1), xycoords=ax.transAxes,
1003-
xytext=(0.05, 0.72), textcoords=ax.transAxes,
1002+
xy=(x0, y1), xycoords=ax.transAxes,
1003+
xytext=(0.05, 0.66), textcoords=ax.transAxes,
10041004
arrowprops=dict(arrowstyle="->",
1005-
connectionstyle="arc3,rad=-0.25",
1005+
connectionstyle="arc3,rad=-0.3",
10061006
lw=2.5, color="green",
10071007
shrinkA=6, shrinkB=8),
10081008
fontsize=18, color="green", weight="bold",
@@ -1011,10 +1011,10 @@ ax.annotate("Most likely:\nsucceed early",
10111011
# Arrow pointing to later trials
10121012
x0, y0, x1, y1 = seq_boxes["FFFFS"]
10131013
ax.annotate("Less likely:\nmany failures",
1014-
xy=((x0 + x1)/2, y1), xycoords=ax.transAxes,
1015-
xytext=(0.95, 0.72), textcoords=ax.transAxes,
1014+
xy=(x1, y1), xycoords=ax.transAxes,
1015+
xytext=(0.95, 0.66), textcoords=ax.transAxes,
10161016
arrowprops=dict(arrowstyle="->",
1017-
connectionstyle="arc3,rad=0.25",
1017+
connectionstyle="arc3,rad=0.3",
10181018
lw=2.5, color="red",
10191019
shrinkA=6, shrinkB=8),
10201020
fontsize=18, color="red", weight="bold",

0 commit comments

Comments
 (0)