Skip to content

Commit 2809c90

Browse files
committed
Add illustration of xarray library
1 parent baa55ee commit 2809c90

File tree

4 files changed

+2283
-0
lines changed

4 files changed

+2283
-0
lines changed

source-code/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,5 @@ to create it. There is some material not covered in the presentation as well.
3333
* [1seaborn`]:(seaborn): illustrations of using Seaborn to create plots.
3434
* [`web-scraping`](web-scraping): illustration of web scraping using beautiful soup
3535
and graph representation using networkx.
36+
* [`xarray`](xarray): illustrates the xarray library for pandas-like operations
37+
on multi-dimensional arrays.

source-code/xarray/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.nc

source-code/xarray/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Xarray
2+
3+
xarray is a Python package to represent numerical data with metadata. In that respect it is
4+
a hybrid between numpy and pandas.
5+
6+
## What is it?
7+
8+
1. `xarray_intro.ipynb`: Jupyter notebook introducing some of xarray's features.

0 commit comments

Comments
 (0)