Skip to content

guenchi/Matplotlib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Matplotlib for Chez Scheme

image

powerful plotting library built on the popular Matplotlib

Notice: MacOS 10.14.6 has a backend bug: Tck.Tk will crash the MacOS so Matplotlib may not run on this version of system.

image

(define x (np-arange (int 0) (int 10) (float 0.1)))
(define y (np-sin x))
(plt-plot y)
(plt-show)

image

(define x (np-linspace (int 0) (int 10) (int 100)))
(define y (np-exp (np-negative x)))
(plt-plot y)
(plt-show)

Depencies:

https://guenchi.github.io/Darkart

https://github.com/python/cpython

https://github.com/matplotlib/matplotlib

The Darkart ecosystem:

https://guenchi.github.io/NumPy

https://guenchi.github.io/SciPy

https://guenchi.github.io/SymPy

https://guenchi.github.io/Matplotlib

https://guenchi.github.io/Pandas

Releases

No releases published

Packages

No packages published

Languages