Skip to content

Commit

Permalink
DOC: switch to linear scale
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer committed Oct 10, 2022
1 parent 945a6a3 commit 5242a73
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/jpsi2ksp.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
" make_commutative,\n",
")\n",
"from IPython.display import Latex, Markdown\n",
"from matplotlib.colors import LogNorm\n",
"from tensorwaves.function.sympy import create_function\n",
"\n",
"from ampform_dpd import (\n",
Expand Down Expand Up @@ -704,7 +703,7 @@
"normalized_intensities = intensities / jnp.nansum(intensities)\n",
"\n",
"fig, ax = plt.subplots(figsize=(14, 10))\n",
"mesh = ax.pcolormesh(X, Y, normalized_intensities, norm=LogNorm())\n",
"mesh = ax.pcolormesh(X, Y, normalized_intensities)\n",
"ax.set_aspect(\"equal\")\n",
"c_bar = plt.colorbar(mesh, ax=ax, pad=0.01)\n",
"c_bar.ax.set_ylabel(\"Normalized intensity (a.u.)\")\n",
Expand Down

0 comments on commit 5242a73

Please sign in to comment.