한국어 | English | 日本語
Juliaの散布図に回帰直線を入れる方法は、オプションでsmooth = trueを使うことだ。
smooth = true
using Plots x = rand(100) scatter(x, 2x .+ 0.1randn(100), smooth = true) savefig("plot.svg")