using Plots; gr()
x = 0:12
plot(x, sin, lt=:step, framestyle=:box, label=false)
NB:
that is the default behaviour. In case a tight plot is required, add argument: widen=false
using Plots; gr()
x = 0:12
plot(x, sin, lt=:step, framestyle=:box, label=false)
NB:
that is the default behaviour. In case a tight plot is required, add argument: widen=false