[julia-users] PyPlot x(y)tick label fontsize

2016-09-09 Thread Ralph Smith
ax[:tick_params]("both",labelsize=24) See http://matplotlib.org/api/pyplot_api.html for related functions and arguments.

[julia-users] PyPlot x(y)tick label fontsize

2016-09-09 Thread MLicer
Dear all, i am using PyPlot for a simple sine plot and i am trying to increase the fontsize of x(y) *tick* labels (*not* x(y) *axis* labes). The following code... using PyPlot # generate data: x = 0:0.01:30 sin_noise(arr) = sin(arr) + rand(length(arr)) # Create a figure fig =