/python-datascientist

Dépôt associé au cours Python pour data scientist et data economist (ENSAE 2e année)

Primary LanguageROtherNOASSERTION

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/.

Les notebooks d'exercice sont dans l'arborescence :folder: content/**/notebooks/*.ipynb

Syllabus disponible

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