Skip to content

Commit

Permalink
update matplotlib import
Browse files Browse the repository at this point in the history
  • Loading branch information
darthtrevino committed May 21, 2024
1 parent 717a89b commit fe655e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/tutorials/models/models.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -295,11 +295,12 @@
"import matplotlib.pyplot as plt\n",
"import seaborn as sns\n",
"from matplotlib import cm\n",
"from matplotlib.pyplot import get_cmap\n",
"\n",
"fig, axs = plt.subplots(2, 3, figsize=(20, 16))\n",
"\n",
"# colormapping\n",
"cmap = cm.get_cmap(\"RdBu_r\")\n",
"cmap = get_cmap(\"RdBu_r\")\n",
"\n",
"center = 0\n",
"vmin = 0\n",
Expand Down

0 comments on commit fe655e9

Please sign in to comment.