I tried to plot in Julia with the following code:
using Pkg; Pkg.activate(".")
using Plots;
plot(0:0.1:2π, sin,
xlabel="Xlabel [units]", ylabel="Ylabel [units]")
But the figure looks blurry, in either Jupyterlab or VSCode.
By the way, if I switch to the pythonplot()
backend, the figure looks fine.
I tried everything without a solution. (version: Julia v1.12.0; Plots v1.41.1)