logo

ジュリアプロットで回帰直線を描く方法 📂ジュリア

ジュリアプロットで回帰直線を描く方法

コード

plot.svg

Julia散布図回帰直線を入れる方法は、オプションでsmooth = trueを使うことだ。

using Plots

x = rand(100)
scatter(x, 2x .+ 0.1randn(100), smooth = true)
savefig("plot.svg")

環境

  • OS: Windows
  • julia: v1.8.3
  • Plots v1.38.5