gnuplot cuts off fractional digits

后端 未结 1 969
清酒与你
清酒与你 2020-12-04 02:45

I want to plot some stockpile data.
The data is located in a csv-file and I already got an almost accurate plot, so reading from file isn\'t the problem.



        
相关标签:
1条回答
  • 2020-12-04 02:59

    Unfortunately you did not show any data from you file, but I guess you are using commas as decimal separators. In that case you need to set the right decimal sign for reading the input. You can use e.g.

    set decimalsign locale
    

    or use an explicit locale (this must be installed)

    set decimalsign locale "de_DE.UTF-8"
    

    Note, that setting an explicit character with set decimalsign ',' does not work because it usually affects only the output format of e.g. tics, but not the input behaviour.

    0 讨论(0)
提交回复
热议问题