# # $ gnuplot graph1_.gnu # # source : # ++/graph1_.gnu # # update : # # reset # # codage iso pour les diacritiques set encoding iso_8859_1 # set size 1.0, 1.0 set origin 0.0, 0.0 # # pas de légendes set nokey # # definition of axes set xlabel "Year" set xdata time set timefmt "%Y" set format x "%Y" #++set xrange ++ year min year max set ylabel "Nb of publications" # titre sur le graphique set title "NEMO nb of publications by year date : " # #set term svg dynamic #set output "years.svg" #++set output "fichier_svg" set term png set output "/years.png" plot '-' using 1:2 with linespoints e