Advertisement
Guest User

Untitled

a guest
Apr 27th, 2016
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ####HISTOGRAM#####
  2.  
  3. set terminal png size 768,512
  4.  
  5. set datafile separator ","
  6. set output "motor_UPDRS.png";
  7. set title ""
  8. set autoscale
  9. set xlabel ""
  10. set style data histogram
  11. set style histogram cluster gap 10
  12. set style fill solid border -1
  13. set boxwidth 1000
  14.  
  15. plot 'parkinsons.data' u 9
  16.  
  17.  
  18. unset output
  19.  
  20. #####PLOT DWÓCH##########
  21. set terminal png size 768,512
  22.  
  23. set datafile separator ","
  24. set output "first.png";
  25. set title ""
  26. set autoscale
  27. set xlabel ""
  28.  
  29.  
  30. plot 'parkinsons.data' u 3:5 w lines,  'parkinsons.data' u 3:6 w lines
  31.  
  32.  
  33. unset output
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement