Skip to content

Commit

Permalink
Merge pull request #61 from AdamTheisen/UPR_Tutorial
Browse files Browse the repository at this point in the history
ENH: Remaining issues to fix
  • Loading branch information
AdamTheisen authored Jul 12, 2023
2 parents c17bb90 + f2088b3 commit f21293a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Tutorials/UPR-ACT-2023/5-ACT-Basics-2023.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@
"# Create a plotting display object with 2 plots\n",
"display = act.plotting.TimeSeriesDisplay(ds, figsize=(15, 10), subplot_shape=(2,))\n",
"\n",
"# Plot up the diffuse variable in the first plot\n",
"# Plot up the variable in the first plot\n",
"display.plot(variable, subplot_index=(0,))\n",
"\n",
"# Plot up a day/night background\n",
Expand Down Expand Up @@ -361,7 +361,7 @@
"# Create a plotting display object with 2 plots\n",
"display = act.plotting.TimeSeriesDisplay(ds, figsize=(15, 10), subplot_shape=(2,))\n",
"\n",
"# Plot up the diffuse variable in the first plot\n",
"# Plot up the variable in the first plot\n",
"display.plot(variable, subplot_index=(0,))\n",
"\n",
"# Plot up a day/night background\n",
Expand Down Expand Up @@ -397,7 +397,7 @@
"# Create a plotting display object with 2 plots\n",
"display = act.plotting.TimeSeriesDisplay(ds, figsize=(15, 10), subplot_shape=(2,))\n",
"\n",
"# Plot up the diffuse variable in the first plot\n",
"# Plot up the variable in the first plot\n",
"display.plot(variable, subplot_index=(0,))\n",
"\n",
"# Plot up a day/night background\n",
Expand Down Expand Up @@ -460,7 +460,7 @@
"for i in range(len(display.axes)):\n",
" for j in range(len(display.axes[i])):\n",
" display.axes[i, j].set_xlim([0, 10])\n",
" display.axes[i, j].set_ylim([0, 1000])\n",
" display.axes[i, j].set_ylim([0, 50])\n",
" \n",
"plt.show()"
]
Expand Down

0 comments on commit f21293a

Please sign in to comment.