To display this page you need a browser that supports JavaScript.

x
This page has been protected with a demo version of HTML Guard. The full version does not add this text to processed pages.
#!/usr/local/bin/gnuplot set terminal png set output 'gnuplots/output2_3_4.png' set autoscale set title 'Max Sessions - Popular Days' set xlabel 'Day' set ylabel 'Sessions' set xrange [1:9] set yrange [0:10000] #this to be shown better we can dicrease it to 3000 for example set grid set style data histograms set datafile separator '-' plot 'sorted_users_3' using 2:xticlabels(1) notitle, 'sorted_users_3' using 2:xticlabels(1) notitle with lines # EOF