Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1.73 KB

File metadata and controls

39 lines (25 loc) · 1.73 KB

python-datascientist

Build Status pipeline status Binder Onyxia Open In Colab Netlify Status

⚠️ 🚧 Ce site est en construction 🚧

Supports associés au site disponible à l'adresse https://linogaliana-teaching.netlify.app/.

Syllabus disponible

Bientôt: test automatique des notebooks avec travis

Contribuer

Pour éditer des notebooks bien intégrés dans le site web, utiliser jupytext

Pour convertir un notebook jupyter en .Rmd (on n'utilise le .md que pour la transition avec hugo) :

for i in $(find . -type f -name "*.ipynb"); do
  jupytext --to md "$i"
done
jupytext --to Rmd ./content/01_data/02_pandas_tp.ipynb
jupytext --to ipynb ./content/01_data/02_pandas_tp.Rmd