I’m trying to create a QQ plot for about 400 000 inter-arrival times, but the resulting plot takes far too long to open or julia crashes. Is there a way to plot more efficiently?
plot_test = plot(
x = test1[:ita],
y = Exponential(mu),
Stat.qq,
Geom.point,
style(default_color = colorant"green",
highlight_width = 0pt,
point_size=0.5pt));