*** Wartungsfenster jeden ersten Mittwoch vormittag im Monat ***

Skip to content
Snippets Groups Projects
Commit 471892eb authored by Patrick Kappl's avatar Patrick Kappl
Browse files

Plot average bias correction over 1/n

parent 932e8fc5
No related branches found
No related tags found
No related merge requests found
Pipeline #4354 passed with stages
in 1 minute and 34 seconds
......@@ -382,9 +382,8 @@ def plot_average_bias_correction(file_indexes=[0], i_channel=None,
ax.yaxis.set_major_formatter(mtick.FormatStrFormatter("%.2e"))
ax.tick_params(axis="x", which="minor", bottom=False)
plt.title("Average bias correction over all $\\nu$ and $k$")
plt.loglog(n_worm_samples[file_indexes], average_corrections, "x-")
plt.xticks(n_worm_samples[file_indexes], [str(n) for n in n_worm_samples])
plt.xlabel("n_worm_samples")
plt.plot(1 / n_worm_samples[file_indexes], average_corrections, "x-")
plt.xlabel("1 / n_worm_samples")
plt.ylabel(r"$|f(\hat{x})-\hat{y}_{\mathrm{jackknife}}|$", fontsize=12)
plt.grid(which="major")
if fig_name is None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment