Multiple 2D plots with both axes logarithmically scaled

I solved my own problem. I did some research, but that actually didn’t solve the problem (as the results pertained to using PyPlot in Python), but I just typed xscale into a Julia prompt and lucked out that it was a defined function and I looked at its docs and figured out how to use it and its y-counterpart yscale.

This is the code required for my particular problem:

using PyPlot
PyPlot.figure(1)
PyPlot.plot(nc, diffc1); 
xscale("log")
yscale("log")
PyPlot.figure(2)
PyPlot.plot(nc, diffc2); 
xscale("log")
yscale("log")
PyPlot.figure(3)
PyPlot.plot(nc, diffc3); 
xscale("log")
yscale("log")
PyPlot.figure(4)
PyPlot.plot(nc, diffc4)
xscale("log")
yscale("log")