Skip to content

Commit d5ea274

Browse files
authored
Merge pull request #14 from gabrieletijunaityte/master
Fix typos
2 parents 369615d + 3cf6034 commit d5ea274

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

index.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ During this tutorial, we will demonstrate different ways to visualize data on a
4343
- Add geospatial data to a map using rasterio for rasters, geopandas for vector
4444

4545
## Dependencies
46-
For the tutorial today we make use of a set of packages. Create a new yaml file (`env.yml` for example) and paste the following environment definition in it.
46+
For the tutorial today we make use of a set of packages. Create a new yaml file (`env.yaml` for example) and paste the following environment definition in it.
4747
```
4848
name: python-programming
4949
dependencies:
@@ -232,10 +232,10 @@ f, axarr = plt.subplots(2, sharex=True)
232232
```
233233

234234
```{block, type="alert alert-success"}
235-
> **Question 4**: `axarr` is an array. What are the elements of this array and how many elements does is exist out of?
235+
> **Question 4**: `axarr` is an array. What are the elements of this array and how many elements does it exist out of?
236236
```
237237

238-
We can add a title to the figure and and labels to the axes. Check [this documentation](https://matplotlib.org/stable/api/axes_api.html) to see what more you can tweak.
238+
We can add a title to the figure and labels to the axes. Check [this documentation](https://matplotlib.org/stable/api/axes_api.html) to see what more you can tweak.
239239

240240
```{Python,engine.path='/usr/bin/python3'}
241241
# Subplots are stored in an array

index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@
905905
<h4 class="author"><em>Arno Timmer, Jan Verbesselt, Jorge
906906
Mendes de Jesus, Aldo Bergsma, Johannes Eberenz, Dainius Masiliunas,
907907
David Swinkels, Judith Verstegen, Corné Vreugdenhil</em></h4>
908-
<h4 class="date"><em>06 September, 2024</em></h4>
908+
<h4 class="date"><em>25 September, 2024</em></h4>
909909

910910

911911

@@ -977,7 +977,7 @@ <h2>Today’s Learning objectives</h2>
977977
<div id="dependencies" class="section level2">
978978
<h2>Dependencies</h2>
979979
<p>For the tutorial today we make use of a set of packages. Create a new
980-
yaml file (<code>env.yml</code> for example) and paste the following
980+
yaml file (<code>env.yaml</code> for example) and paste the following
981981
environment definition in it.</p>
982982
<pre><code>name: python-programming
983983
dependencies:
@@ -1262,11 +1262,11 @@ <h2>Matplotlib</h2>
12621262
<blockquote>
12631263
<p>
12641264
<strong>Question 4</strong>: <code>axarr</code> is an array. What are
1265-
the elements of this array and how many elements does is exist out of?
1265+
the elements of this array and how many elements does it exist out of?
12661266
</p>
12671267
</blockquote>
12681268
</div>
1269-
<p>We can add a title to the figure and and labels to the axes. Check <a href="https://matplotlib.org/stable/api/axes_api.html">this
1269+
<p>We can add a title to the figure and labels to the axes. Check <a href="https://matplotlib.org/stable/api/axes_api.html">this
12701270
documentation</a> to see what more you can tweak.</p>
12711271
<div class="sourceCode" id="cb13"><pre class="sourceCode python"><code class="sourceCode python"><span id="cb13-1"><a href="#cb13-1" tabindex="-1"></a><span class="co"># Subplots are stored in an array</span></span>
12721272
<span id="cb13-2"><a href="#cb13-2" tabindex="-1"></a>line <span class="op">=</span> axarr[<span class="dv">0</span>].plot(x, sine)</span>

0 commit comments

Comments
 (0)