Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Perl 中的 GD:Graph 制作图表,但我不确定如何告诉线条从某个点开始。我有斜率,但它会自动从 0,0 点开始。我不确定我至少可以在哪里指定 y 截距。我认为这与我设置数据点时有关,
$data[0] = [@date]; $data[1] = [@best_line];
其中 data[0] 将使用时间设置 x 轴,而 data[1] 在图表上创建一条线。如果有人对此有任何见解,那就太好了。谢谢。
只需在 x = 0 处添加一个数据点:
@data = ( [0, ...], [y-intercept, ...] );