Advertisement
Guest User

Untitled

a guest
Dec 18th, 2017
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. set terminal pngcairo font ',10' size 600,600
  2.  
  3. set xdata time
  4. set timefmt "%Y-%m-%d"
  5. set xtics format "%Y-%m-%d"
  6. set xtics 60*60*24*60
  7. set xrange ["2017-01-01":]
  8. set yrange [20:70]
  9. set grid
  10.  
  11. set output 'steam.png'
  12. set multiplot layout 2,1
  13.  
  14.  
  15. set title 'Number of games in the top 100 best selling games on Steam'
  16. set key top right
  17. plot 'best_sellers.dat' using 1:4 smooth unique title 'Mac',\
  18.      '' using 1:5 smooth unique title 'Linux'
  19.  
  20. set title 'Number of games in the top 100 best rated games on Steam'
  21. set key bottom right
  22. plot 'best_rated.dat' using 1:4 smooth unique title 'Mac',\
  23.      '' using 1:5 smooth unique title 'Linux'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement