R的边界在x-y二维坐标平面上绘制由for
参数化的直线。
Julia与Plots.jl中的等价物是什么?
答案 0 :(得分:1)
有Plots.abline!
会以ax+b
的形式绘制一条直线,并遵守绘图的轴限制。因此,它实际上不会达到无穷大,但不需要您事先知道轴的限制。
plot(x->((x^2+3x+2)/(x-2)), 6, 30, xlim=(6,30), size=(300,300))
# draw oblique asymptote to the above function (y=x+5)
Plots.abline!(1, 5, line=:dash)
您还可以仅使用直线上的两个点绘制一条直线。这也应遵守轴的限制。
plot!([x1, x2], [y1, y2], seriestype = :straightline, kwargs...)