排序
Publication ready Jupyter Notebooks
Publication ready Jupyter Notebooks,Documenting your work is an integral part of your development but if you are someone like me and you have to share your work with different set ...
How to display latex matrix as output of a code cell
How to display latex matrix as output of a code cell,from IPython.display import display, Math def print_matrix(array): data = '' for line in array: if len(line) == 1: data += ' %....
4 Easy Pieces
4 Easy Pieces,Here are some minor hacks to improve your experience with Pandas and Jupyter Notebook. Jupyter Notebooks are incredible tools; Donald Knuth spent years unsuccessfully...
Day One at JupyterCon
Day One at JupyterCon,I wrote up a few reflections on my first day at JupyterCon. I built a JupyterHub cluster on Kubernetes in the cloud using Helm, learned to visualize data effe...
When we read Stack Overflow, what does Stack Overflow read from us?
When we read Stack Overflow, what does Stack Overflow read from us?, (A Japanese translation is available here.) Before the Internet, a famous joke is created. In America, you watc...
Live-reloading of Python Modules in the Python REPL / IPython / Jupyter Console
Live-reloading of Python Modules in the Python REPL / IPython / Jupyter Console,Often, I would work on a Python module and add changes to it live, which I would then want to test i...
Using docker-compose for Python and Jupyter
Using docker-compose for Python and Jupyter,After writing my last post about starting to use Docker for Jupyter notebooks with Python I got a recommendation to learn docker-compose...
Python and Jupyter Notebooks
Python and Jupyter Notebooks,Recently I have began to use Jupyter notebooks with Python but have struggled with the constant need to download dependencies or have something not dow...