Skip to content

Commit

Permalink
fix two typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Aug 7, 2024
1 parent 0fa461a commit 5ad1d61
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions notebooks/01-plotting_intro.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"## Plotting Intro\n",
"\n",
"\n",
"Gliderpy has a plotting interface for quick simple diagnositc figures they are: `plot_ track`, `plot_ctd`, and `plot_transect` for plotting the glider track, a vertical transect for a specific variable, or a single cast (glider dive). Let's take a look on how to use them. First we will load a glider dataset as a pandas DataFrame."
"Gliderpy has a plotting interface for quick simple diagnostic figures they are: `plot_ track`, `plot_ctd`, and `plot_transect` for plotting the glider track, a vertical transect for a specific variable, or a single cast (glider dive). Let's take a look on how to use them. First we will load a glider dataset as a pandas DataFrame."
]
},
{
Expand All @@ -18,7 +18,6 @@
"source": [
"from gliderpy.fetchers import GliderDataFetcher\n",
"\n",
"\n",
"glider_grab = GliderDataFetcher()\n",
"\n",
"glider_grab.fetcher.dataset_id = \"whoi_406-20160902T1700\"\n",
Expand Down Expand Up @@ -49,7 +48,7 @@
"source": [
"### plot_ctd\n",
"\n",
"This methos groups all the casts by their position (latitude and longitude) giving the user access to each individual cast using the index (`profile_number`) of the grouped DataFrame."
"This method groups all the casts by their position (latitude and longitude) giving the user access to each individual cast using the index (`profile_number`) of the grouped DataFrame."
]
},
{
Expand Down Expand Up @@ -114,7 +113,6 @@
"source": [
"import matplotlib.pyplot as plt\n",
"\n",
"\n",
"fig, (ax0, ax1) = plt.subplots(\n",
" figsize=(15, 9),\n",
" nrows=2,\n",
Expand Down

0 comments on commit 5ad1d61

Please sign in to comment.