Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 

README.md

numpy-html

A simple table renderer for numpy arrays. Provides a rich display hook for use with Jupyter Lab / Notebook. Inspired by xtensor.

Installation

pip install numpy-html

Example inside Jupyter

import numpy_html
import numpy as np

np.set_printoptions(threshold=5, edgeitems=2)
np.arange(49).reshape(7, 7)
0 1 5 6
7 8 12 13
35 36 40 41
42 43 47 48
You can’t perform that action at this time.