Plots.jl 中的 "line" 和 "path" 系列类型有什么区别?
What's the difference between the "line" and "path" series types in Plots.jl?
使用选项 seriestype = :line
和 seriestype = :path
生成的图看起来与我完全相同。
:line
在 x
中排序,:path
接受您的输入但不进行任何排序。
使用选项 seriestype = :line
和 seriestype = :path
生成的图看起来与我完全相同。
:line
在 x
中排序,:path
接受您的输入但不进行任何排序。