gpt4 book ai didi

julia - 增加 Plots.jl 中子图之间的空间

转载 作者:行者123 更新时间:2023-12-04 02:13:27 27 4
gpt4 key购买 nike

如何增加 Plots.jl 中子图之间的空间?

最小的非工作示例:

julia> using Plots; pyplot()
Plots.PyPlotBackend()

julia> data = [rand(100), rand(100)];
histogram(data, layout=2, title=["Dataset A" "Dataset B"], legend=false)
ylabel!("ylabel")

如果您使图形足够小,则第二个图的 y 标签会与第一个图发生冲突。

最佳答案

attributes Plots.jl 的一部分文档,有一个部分叫 子图 .在那里,您会找到关键字 margin , top_margin , bottom_margin , left_marginright_margin这可能对你有帮助。

最小的工作示例是:

using Plots, Measures
pyplot()

data = [rand(100), rand(100)];

histogram(data, layout = 2,
title = ["Dataset A" "Dataset B"], legend = false,
ylabel = "ylabel", margin = 5mm)

请注意 using Measures顺便说一下。我希望这有帮助。

关于julia - 增加 Plots.jl 中子图之间的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49168872/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com