Plots title offset (pyplot)

One common workaround in Plots.jl is to subplot:

using Plots; pyplot()
p1 = plot(title="title", titlefontsize=40, axis=nothing, framestyle=:none);
p2 = heatmap(rand(100,100), ratio=1);
plot(p1, p2, layout = grid(2, 1,  heights=[-0.2, 1]), cb=:top)

NB:
You may want to further fine tune the relative heights

1 Like