#+ # .. _years_gnuplot.gnu: # # DESCRIPTION # =========== # # EXAMPLES # ======== # # :: # # $ gnuplot years_gnuplot.gnu # # EVOLUTIONS # =========== # # - # # * created by :ref:`years_gnuplot.xsl` # #- 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 [:] # commented to understand message "avoid all points y value undefined" set xrange [*:*] set yrange [*:*] set ylabel "Nb of publications" # titre sur le graphique set title "nb of publications by year date : " # set term png set output "/years.png" plot '-' using 1:2 with lines e