How to display two plots?

plot(p1, p2)

Or if you would like to have the step-response in the upper right corner:

p3 = plot(framestyle=:none)    # blank dummy plot
l = @layout [a{0.5w} [b{0.5h}; c]]
plot(p1, p2, p3, layout=l)