web-dev-qa-db-ja.com

GNUPlot:ターミナルセットが不明です

    G N U P L O T
    Version 4.6 patchlevel 4    last modified 2013-10-02 
    Build System: Linux x86_64

    Copyright (C) 1986-1993, 1998, 2004, 2007-2013
    Thomas Williams, Colin Kelley and many others

    gnuplot home:     http://www.gnuplot.info
    faq, bugs, etc:   type "help FAQ"
    immediate help:   type "help"  (plot window: hit 'h')
    Terminal type set to 'unknown'
    gnuplot>

こんにちは、gnuplotは「不明」に設定された端末タイプを表示します。
そして、次のコマンドを入力した場合。

gnuplot> plot "./MergePlot.dat" with linespoint

何も起こりません。

1
Sheetal V

間違いなくmissupstoodgnuplotの使い方。
あなたはgnuplotに何をプロットすべきかを伝えませんでした。

そして、出力は次のようになります。

マニュアルを読んでください。そうしないと、マニュアルを読んでいない人は誰も助けてくれません。 http://people.duke.edu/~hpgavin/gnuplot.html

それ以外の場合、作業プロットがコマンドとしてどのように見えるかの例を次に示します。

#SET TERMINAL
set term svg
set output 'temp-verlauf.svg'
set title "Temperaturverlauf"

#Axes label
set xlabel "Messzeitpunkt"
set ylabel "Luftfeuchte/Temperatur"
set y2label "Luftdruck"

#Axis setup
set xdata time # x-Achse wird im Datums/Zeitformat skaliert
set timefmt "%d.%m.%Y\t%H:%M:%S" # Format Zeitangaben yyyy.mm.dd_hh:mm:ss
set format x "%H:%M" # Format für die Achsenbeschriftung


#Axis ranges
set yrange [0:60] # die y-Achse geht von:bis

#Tics
set ytics nomirror
set y2tics nomirror

#OTHER
set datafile separator "\t"
set xrange ["06.11.2014 14:00:00":"07.11.2014   21:00:00"]

plot \
"file.dat" every 10 using 1:5 title "Luftfeuchte" with lines, \
"file.dat" every 10 using 1:6 title "Temperatur" with lines, \
"file.dat" every 10 using 1:7 title "Luftdruck" with lines axes x1y2, \
"file.dat" every 10 using 1:17 title "Niederschlagsintensitaet Synop (4677)" with lines
2
Gamecompiler