Guest User

Untitled

a guest
Oct 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. year temp label1 year humidity label2
  2. 1990 30 hot 1991 100 wet
  3. 1992 25 warm 1992 83 dry
  4.  
  5. plot 'weather.dat' using 1:2 with points with labels, '' using 4:5 with points with labels
  6.  
  7. plot 'weather.data' using 1:2 with points, '' using 1:2:3 with labels
  8.  
  9. plot 'weather.data' using 1:2 with points, '' using 1:($2+1):3 with labels
  10.  
  11. ... title "some line title"...
  12.  
  13. ... title column(COLUMN_NUMBER) ...
  14.  
  15. plot 'weather.dat' using 1:2 title column(3) ...
  16.  
  17. plot 'weather.dat' using 1:2 title column(3) w line lt 1 lc 1 lw 1
Add Comment
Please, Sign In to add comment