Plots图例显示效果不理想

import Plots
import Random

Random.seed!(314)

# number of clients
m = 12
# number of facility locations
n = 5

# Clients' locations
Xc, Yc = rand(m), rand(m)

# Facilities' potential locations
Xf, Yf = rand(n), rand(n)

Plots.scatter(
    Xc,
    Yc;
    label = "Clients",
    markershape = :circle,
    markercolor = :blue,
)
Plots.scatter!(
    Xf,
    Yf;
    label = "Facility",
    markershape = :square,
    markercolor = :white,
    markersize = 6,
    markerstrokecolor = :red,
    markerstrokewidth = 2,
)

画图效果如下,其中图例两行距离太近,而且标识符与图中实际大小不一致,如何调整图例显示效果?

要是实在没人答,你自己也看不懂Plots官方文档,你就导出数据用你擅长的语言画图得了

我就是嫌官方文档太长(好像也看不懂,太专业了)所以正经画图的时候一直用的Python

import matplotlib.pyplot as plt
plt.style.use("science")

挺好用

谢谢了 :sweat_smile:看会不会有大佬解答

这个,如果需要文档的话,可以参考以前帖子 一份简单的Plots官网文档总结

u1s1,我之前整理过(主要来自 JuliaDatascience 的)Makie 文档 包的使用/Makie - Roadmap ,可以考虑使用 Makie

2 个赞