This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/python/examples/plot.yap
Vitor Santos Costa f12349993b python
2016-08-25 01:26:11 -05:00

14 lines
204 B
Prolog

:- [library(python)].
main :-
Plt = matplotlib.pyplot,
:= import( Plt ),
:= (
Plt.figure(figsize=(10,2.5))
Plt.plot([1,2,3,4]),
Plt.ylabel(`some numbers`),
Plt.show()
).