added jupyter examples page

This commit is contained in:
2019-10-02 14:50:13 +02:00
parent 15ba0cb737
commit 5c66aedb37
2 changed files with 31 additions and 0 deletions

View File

@ -47,6 +47,8 @@ entries:
folderitems:
- title: Jupyterhub service
url: /merlin6/jupyterhub.html
- title: Jupyter examples on merlin6
url: /merlin6/jupyter-examples.html
- title: Jupytext - efficient editing
url: /merlin6/jupytext.html
- title: Jupyter Extensions

View File

@ -0,0 +1,29 @@
---
title: Jupyter examples on merlin6
#tags:
#keywords:
last_updated: 1 October 2019
#summary: ""
sidebar: merlin6_sidebar
permalink: /merlin6/jupyter-examples.html
---
These examples demonstrate the use of certain python libraries and modules in the merlin6 environment. They are provided to get you started fast. You can check out a repository of the examples from
https://git.psi.ch/lsm-hpce/merlin6-jupyterhub-examples
A number of standard data sets for the tutorials of the libraries are hosted on merlin6 centrally under `/data/project/general/public`, so you do not need to store them in youruser space.
# Dask
[Dask](https://dask.org/) is a flexible library for parallel computing in Python. It provides the abstraction of a dask dataframe that can reside on multiple machines and can be manipulated by an API designed to be as close as possible to [pandas](https://pandas.pydata.org/). The example shows how to start up dask workers on merlin6 through slurm.
* [Link to example](https://git.psi.ch/lsm-hpce/merlin6-jupyterhub-examples/blob/master/dask-example.ipynb)
* The data sets for the [dask tutorial](https://github.com/dask/dask-tutorial) are hosted at `/data/project/general/public/dask-tutorial`.
# Plotly
[Plotly](https://plot.ly/python/getting-started/) is an interactive open source plotting library
* [Link to example](https://git.psi.ch/lsm-hpce/merlin6-jupyterhub-examples/blob/master/plotly-example.ipynb)