8000 GitHub - ipython/matplotlib-inline at a433a899280c9cf801ccb5eb99faa1e15fc8a459
[go: up one dir, main page]

Skip to content

ipython/matplotlib-inline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Matplotlib Inline Back-end for IPython and Jupyter

Installation

With conda:

conda install -c conda-forge notebook matplotlib

With pip:

pip install notebook matplotlib

Usage

This package is included in IPython and can be used in a Jupyter Notebook:

%matplotlib inline

import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0, 3*np.pi, 500)
plt.plot(x, np.sin(x**2))
plt.title('A simple chirp');

About

Inline Matplotlib backend for Jupyter

Resources

License

Security policy

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published

Contributors 23

0