Plotting using a CSV file

后端 未结 2 2133
余生分开走
余生分开走 2021-01-31 06:56

I have a csv file which has 5 entries on every row. Every entry is whether a network packet is triggered or not. The last entry in every row is the size of packet. Every row = t

2条回答
  •  耶瑟儿~
    2021-01-31 07:40

    This should get you started:

    set datafile separator ","
    plot 'infile' using 0:1
    

提交回复
热议问题