Skip to content

Commit

Permalink
Removed Output
Browse files Browse the repository at this point in the history
  • Loading branch information
jukent committed Oct 2, 2019
1 parent df04301 commit 97d8dbc
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 198 deletions.
4 changes: 2 additions & 2 deletions notebooks/bytopic/data-visualization/01_matplotlib.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"We're not restricted to the default look of the plots, but rather we can override style attributes, such as `linestyle` and `color`. `color` can accept a wide array of options for color, such as `red` or `blue` or HTML color codes. Here we use some different shades of red taken from the Tableau color set in matplotlib, by using `tab:red` for color."
"We're not restricted to the default look of the plots, but rather we can override style attributes, such as `linestyle` and `color`. `color` can accept a wide array of options for color, such as `red` or `blue` or HTML color codes."
]
},
{
Expand All @@ -245,7 +245,7 @@
"\n",
"# Specify how our lines should look\n",
"ax.plot(times, temps, color='red', label='Temperature (surface)')\n",
"ax.plot(times, temps_1000, color='tab:red', linestyle='--',\n",
"ax.plot(times, temps_1000, color='red', linestyle='--',\n",
" label='Temperature (isobaric level)')\n",
"\n",
"# Same as above\n",
Expand Down
231 changes: 35 additions & 196 deletions notebooks/bytopic/data-visualization/02_cartopy.ipynb

Large diffs are not rendered by default.

0 comments on commit 97d8dbc

Please sign in to comment.