Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. set output '../images/words_count_no_stop.png'
  2. set terminal png font "Helvetica" 16 size 1800,1800
  3.  
  4. set datafile separator ","
  5.  
  6. set   autoscale                        # scale axes automatically
  7. unset log                              # remove any log-scaling
  8. unset label                            # remove any previous labels
  9. set xtic auto                          # set xtics automatically
  10. set ytic auto                          # set ytics automatically
  11.  
  12. set style fill solid
  13. set boxwidth 0.75
  14.  
  15. set xtics rotate                       # rotate x labels
  16.  
  17. plot '../data/words_count_no_stop.csv' every ::0::80 using 2:xtic(1) with boxes title "Самые популярные слова"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement