using PyPlot ioff() # Interactive plotting OFF, necessary for inline plotting in IJulia x = 100 * rand(500) y = 100 * rand(500) areas = 800 * rand(500); # Scatterplot fig = figure("scatterplot",figsize=(10,10)) ax = axes() scatter(x,y,s=areas,alpha=0.5, c=areas) title("Scatter Plot") xlabel("X") ylabel("Y") grid("on") gcf();