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/pyx.pl

32 lines
598 B
Perl
Raw Normal View History

2012-11-27 12:10:41 +00:00
:- use_module(library(python)).
:- initialization(main).
2012-11-27 13:50:18 +00:00
setup_dir :-
prolog_load_context(directory, Dir),
atom_concat(Dir,'/pyx/',Base),
assert(base(Base)).
:- setup_dir.
2012-11-27 12:10:41 +00:00
main :-
ex(X),
flush_output,
fail.
main.
ex(hello_world) :-
2012-11-27 13:50:18 +00:00
c := pyx:canvas:canvas,
:= $c:text(0, 0, 'Hello, world!'),
:= $c:stroke(path:line(0, 0, 2, 0)),
:= $c:writePDFfile('hello').
ex(changebar) :-
g := pyx:graph:graphxy(width=8, x=graph:axis:bar),
atomic_concat(Source, 'minimal.dat', Data),
:= $g:plot(graph:data:file(Data, xname=0, y=2), [graph:style:changebar]),
:= $g:writePDFfile(changebar).
2012-11-27 12:10:41 +00:00