Skip to content

Commit d9ec199

Browse files
committed
add readme + docs
1 parent 5e93dbe commit d9ec199

File tree

4 files changed

+37
-1
lines changed

4 files changed

+37
-1
lines changed

README.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,37 @@
1-
# ipyplot
1+
**IPyPlot** is a small python package offering fast and efficient plotting of images inside Jupyter Notebooks cells. It's using IPython with HTML for faster, richer and more interactive way of displaying big number of images.
2+
3+
## Getting Started
4+
5+
Checkout the [examples below](#Examples) and
6+
[gear-images-examples.ipynb](notebooks/gear-images-examples.ipynb) notebook which holds end to end examples for using **IPyPlot**.
7+
8+
## Installation
9+
10+
So far **IPyPlot** can only be installed directly from this repo using `pip`:
11+
12+
```
13+
pip install git+https://github.com/karolzak/ipyplot
14+
```
15+
16+
## Examples
17+
18+
IPyPlot offers 3 main functions which can be used for displaying images in notebooks:
19+
20+
To start working with `IPyPlot` you need to simply import it like this:
21+
```python
22+
import ipyplot
23+
```
24+
25+
and use any of the available plotting functions:
26+
27+
#### Display images in separate, interactive tabs for each class
28+
29+
![](docs/example1-tabs.jpg)
30+
31+
#### Display a collection of images
32+
33+
![](docs/example2-images.jpg)
34+
35+
#### Display class representations (first image for each class)
36+
37+
![](docs/example3-classes.jpg)

docs/example1-tabs.jpg

138 KB
Loading

docs/example2-images.jpg

123 KB
Loading

docs/example3-classes.jpg

115 KB
Loading

0 commit comments

Comments
 (0)