Quantco / metalearners

MetaLearners for CATE estimation
https://metalearners.readthedocs.io/en/latest/
BSD 3-Clause "New" or "Revised" License
34 stars 4 forks source link

Move examples in docs to notebooks #5

Closed FrancescMartiEscofetQC closed 5 months ago

FrancescMartiEscofetQC commented 5 months ago

When we add the github action to build the docs we need to remember to add the step:

      - name: Check notebooks mypy # TODO: Make sure that the rest of pchs also pass
        run: |
          jupyter nbconvert --to script docs/examples/*.ipynb
          for file in docs/examples/*.txt; do mv -- "$file" "${file%.txt}.py"; done
          mypy docs/examples/*.py

Checklist