Corrected point process chapter

This commit is contained in:
2015-11-17 23:50:25 +01:00
parent 549ddb90b7
commit 3aa8eabb6f
3 changed files with 159 additions and 131 deletions

View File

@@ -32,7 +32,7 @@ ax.set_xticks( range(1, 7) )
ax.set_xlabel( 'x' )
ax.set_ylim(0, 0.23)
ax.set_ylabel( 'Probability' )
ax.plot([0.2, 6.8], [1.0/6.0, 1.0/6.0], '-r', lw=2, zorder=1)
ax.plot([0.2, 6.8], [1.0/6.0, 1.0/6.0], '-b', lw=2, zorder=1)
ax.hist([x2, x1], bins, normed=True, color=['#FFCC00', '#FFFF66' ], zorder=10)
plt.tight_layout()
fig.savefig( 'diehistograms.pdf' )