mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-25 17:32:16 +01:00
8 lines
151 B
PHP
8 lines
151 B
PHP
<?php
|
|
$plt = PyCore::import("matplotlib.pyplot");
|
|
|
|
$x = new PyList([1, 2, 3, 4]);
|
|
$y = new PyList([30, 20, 50, 60]);
|
|
$plt->plot($x, $y);
|
|
$plt->show();
|