We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e1c079 commit 4ce747aCopy full SHA for 4ce747a
panel/simdec_app.py
@@ -242,6 +242,7 @@ def figure_pn(
242
ax=axs[0][0],
243
)
244
axs[0][0].set_xlim(xlim)
245
+ axs[0][0].set_box_aspect(aspect=1)
246
247
data = pd.concat([pd.melt(res.bins), pd.melt(res2.bins)["value"]], axis=1)
248
data.columns = ["c", "x", "y"]
@@ -251,6 +252,7 @@ def figure_pn(
251
252
253
axs[1][0].set(xlabel=output_name)
254
axs[1][0].set(ylabel=output_2_name)
255
+ axs[1][0].set_box_aspect(aspect=1)
256
257
_ = sns.histplot(
258
data,
@@ -266,7 +268,9 @@ def figure_pn(
266
268
ax=axs[1][1],
267
269
270
axs[1][1].set_ylim(ylim)
271
+ axs[1][1].set_box_aspect(aspect=1)
272
273
+ fig.tight_layout()
274
return fig
275
276
0 commit comments