Files
phpy/examples/matplotlib/plot.php
2023-12-11 14:58:05 +08:00

9 lines
204 B
PHP

<?php
require dirname(__DIR__, 2) . '/vendor/autoload.php';
$plt = python\matplotlib\pyplot::import();
$x = new PyList([1, 2, 3, 4]);
$y = new PyList([30, 20, 50, 60]);
$plt->plot($x, $y);
$plt->show();