Skip to content

Commit 5e78d42

Browse files
committed
Fixed typos
1 parent 95d6ffe commit 5e78d42

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

_episodes/01-conda.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ to make the types of analysis we do faster and more efficient.
3030
To learn more about the PyAOS "stack" shown in the diagram below
3131
(i.e. the collection of libraries that are typically used for
3232
data analysis and visualisation in the atmosphere and ocean sciences),
33-
check out [this post](https://drclimate.wordpress.com/2016/10/04/the-weatherclimate-python-stack/).
33+
check out [PyAOS stack](https://carpentrieslab.github.io/python-aos-lesson/stack/index.html)
34+
page in the extras tab of the menu above.
3435

3536
![PyAOS stack](../fig/01-pyaos-stack.png)
3637

_extras/stack.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: PyAOS stack
44
---
55

66
It would be an understatement to say that Python has exploded onto the data science scene in recent years.
7-
PyCon and SciPy conferences are held somewhere in the world every few months now,
7+
PyCon and SciPy conferences are held somewhere around the world every few months,
88
at which loads of new and/or improved data science libraries are showcased to the community
99
(check out [pyvideo.org](pyvideo.org) for conference recordings).
1010
The ongoing rapid development of new libraries means that data scientists are (hopefully)
@@ -19,7 +19,7 @@ The focus is on libraries that are widely used and that have good (and likely lo
1919

2020
## Core
2121

22-
The dashed box in the diagram represents the core of the stack, so let’s start this tour there.
22+
The dashed box in the diagram represents the core of the stack, so let’s start our tour there.
2323
The default library for dealing with numerical arrays in Python is [NumPy](http://www.numpy.org/).
2424
It has a bunch of built in functions for reading and writing common data formats like .csv,
2525
but if your data is stored in netCDF format then the default library for getting data
@@ -35,7 +35,7 @@ the [SciPy](https://www.scipy.org/scipylib/index.html) library is the default.
3535
If you’re dealing with a particularly large dataset,
3636
you may get memory errors (and/or slow performance)
3737
when trying to read and process your data.
38-
[Dask[(https://dask.org/) works with the existing Python ecosystem (i.e. NumPy, SciPy etc)
38+
[Dask](https://dask.org/) works with the existing Python ecosystem (i.e. NumPy, SciPy etc)
3939
to scale your analysis to multi-core machines and/or distributed clusters
4040
(i.e. parallel processing).
4141

@@ -117,7 +117,7 @@ The VCDAT application also now runs as a JupyterLab extension, which is an excit
117117
> ## How to choose
118118
>
119119
> In terms of choosing between xarray and Iris,
120-
> some people like the slightly more atmosphere/ocean-centric experience offered by Iris,
120+
> some people like the slightly more AOS-centric experience offered by Iris,
121121
> while others don’t like the restrictions that places on their work
122122
> and prefer the generic xarray experience
123123
> (e.g. to use Iris your netCDF data files have to be CF compliant or close to it).

0 commit comments

Comments
 (0)