2017-06-29 96 views
0

我想在直方圖上做出平滑的線條。到目前爲止,我已經嘗試了所有順利的功能,但我無法獲得結果。gnuplot中的直方圖上的平滑線

對於我使用直方圖:

plot "file.scatter" u (hist($2,width)):(1.0) smooth freq w boxes notitle 

,其結果是:this

但是當我問gnuplot的畫在這些出流暢的線條:

plot "file.scatter" u (hist($2,width)):(1.0) smooth freq w l notitle 

我得到: this

我想讓線圖看起來像一個概率密度函數一樣平滑(當然這些值必須被標準化)。

任何線索的專家?

回答

0

你需要做的卷積,如果您有最新的gnuplot版本(> = 5.1),您可以用kdensity

plot $DATA smooth kdensity [bandwidth n] with boxes 

繪製記住最近的gnuplot版本也可以做分級爲帶有bins功能的直方圖。

+0

謝謝你的幫助! – Harris