ISLR
jupytext
Our great sponsors
- Onboard AI - Learn any GitHub repo in 59 seconds
- InfluxDB - Collect and Analyze Billions of Data Points in Real Time
- SaaSHub - Software Alternatives and Reviews
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
ISLR
-
An Introduction to Statistical Learning with Applications in Python
It’s a well known machine learning book. I’ve read through it and done the exercises in R.
https://github.com/melling/ISLR
There’s an edX course from the authors:
-
R Markdown: The Definitive Guide
I recently discovered R Markdown. Started doing the ISLR examples with it.
https://github.com/melling/ISLR/blob/main/chapter08/08_Lab02...
https://github.com/melling/ISLR/blob/main/chapter08/08_Lab02...
I need to figure out how to better fit images so I don’t have pages with large gaps
Also, you can now embed executable Python in the files.
-
The Elements of Statistical Learning [pdf]
I’m up to Chapter 6 in ISLR
https://github.com/melling/ISLR
Would Elements of Statistical Learning be my next book? I’ve seen the Bishop book highly recommended too.
https://www.amazon.com/Pattern-Recognition-Learning-Informat...
jupytext
- The Jupyter+Git problem is now solved
-
Do you git commit jupyter notebooks?
Jupytext (https://github.com/mwouts/jupytext) has been designed exactly for this
-
The hatred towards jupyter notebooks
jupytext is your friend.
-
Edit notebooks in Google cloud
So if you run your own jupyter server, -jupy+text can be a great workflow : it takes your notebook synchronized with other formats (python file, makdown, ...), so you can edit your py/md file with neovim, and refresh the browser to execute the notebook.
-
Rant: Jupyter notebooks are trash.
Automatically convert ipynb files to py when saving them on JupyterLab
-
JupyterLite is a JupyterLab distribution that runs in the browser
The format is only partially invented, it follows Jupytext [0], but adds support for cell metadata. There is no obvious way to get that in fenced codeblocks, especially with the ability to spread it over multiple lines so it plays well with version control.
One more consideration is that it's not "Markdown with code blocks interspersed", one might as well use plaintext or AsciiDoc.
Of course there are tradeoffs.. I wish I had more time to work on it.
[0]: https://github.com/gzuidhof/starboard-notebook/blob/master/d...
-
Many write research papers in R Markdown - What is the alternative setup in Python?
Using jupytext (allows you to open .md files as notebooks) + jupyter gives you pretty much the same experience. The main issue is that the cell's output will be discarded. To fix it, you can use ploomber to generate an output HTML, so the workflow goes like this:
-
Jupyter Notebooks.
First, the format. The ipynb format does not play nicely with git since it stores the cell's source code and output in the same file. But Jupyter has built-in mechanisms to allow other formats to look like notebooks. For example, here's a library that allows you to store notebooks on a postgres database (I know this isn't practical, but it's a great example). To give more practical advice, jupytext allows you to open .py files as notebooks. So you can develop interactively but in the backend, you're storing .py files.
-
Ask HN: Are there any good Diff tools for Jupyter Notebooks?
You can use jupytext to maintain dual .py/.ipynb representation of notebooks and keep both versions in sync:
https://github.com/mwouts/jupytext/blob/main/docs/paired-not...
It works both ways, it can update the .py file each time you save the notebook, or you can edit the .py file and have the jupytext command line tool update the .ipynb.
What are some alternatives?
jupyter - An interface to communicate with Jupyter kernels.
rmarkdown - Dynamic Documents for R
sagemaker-run-notebook - Tools to run Jupyter notebooks as jobs in Amazon SageMaker - ad hoc, on a schedule, or in response to events
papermill - 📚 Parameterize, execute, and analyze notebooks
nbdev - Create delightful software with Jupyter Notebooks
nbdime - Tools for diffing and merging of Jupyter notebooks.
vim-ipython-cell - Seamlessly run Python code in IPython from Vim
ploomber - The fastest ⚡️ way to build data pipelines. Develop iteratively, deploy anywhere. ☁️
jupyterlite - Wasm powered Jupyter running in the browser 💡
mercury - Convert Jupyter Notebooks to Web Apps
codebraid - Live code in Pandoc Markdown
the-elements-of-statistical-learning - My notes and codes (jupyter notebooks) for the "The Elements of Statistical Learning" by Trevor Hastie, Robert Tibshirani and Jerome Friedman