Plotting Simple Data in R

后端 未结 7 1618
旧时难觅i
旧时难觅i 2021-02-01 06:28

I have a comma separated file named foo.csv containing the following data:

scale, serial, spawn, for, worker
5, 0.000178, 0.000288, 0.000292, 0.0003         


        
相关标签:
7条回答
  • 2021-02-01 06:55

    There is a simple-r way of plotting it:

    https://code.google.com/p/simple-r/

    Using that script, you just have to type:

    r -cdps, -k1:2 foo.csv
    

    To get the plot you want. Put it in the verbose mode (-v) to see the corresponding R script.

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