From 0f0b3db296e89b3001f3b97f40dd19f8b0c96961 Mon Sep 17 00:00:00 2001 From: "William F. Broderick" Date: Mon, 18 Nov 2024 11:00:57 -0500 Subject: [PATCH] updates critical scaling plot --- Snakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Snakefile b/Snakefile index 8dd0ef1..c356f0c 100644 --- a/Snakefile +++ b/Snakefile @@ -4570,8 +4570,9 @@ rule critical_scaling_pointplot: g.ax.yaxis.set_minor_locator(mpl.ticker.LogLocator(2, subs=(.5, ))) g.ax.yaxis.set_major_formatter(mpl.ticker.StrMethodFormatter('{x:.0f}')) else: - g.ax.set_yscale('log', base=10) + g.ax.set_yscale('log', base=2) g.ax.set(ylim=(.01, .6)) + g.ax.yaxis.set_major_formatter(fov.plotting.myLogFormat) g.set(xlabel='Pooling model', ylabel=ylabel, xlim=[-.5, 4.5]) g.savefig(output[0])