我是 R 和 stackoverflow 的新手,我需要你的帮助来重组 R 中的 csv 数据,我正在读取一个文件,其中每一行代表图形 x,y 的变量 n 点,具有下一个结构:
code x y x y x y x y
1 1 0 2 2 3 3 4 5 // 1rst graphic with 4 points
2 1 1 2 3 // 2nd graphic with only 2 points
3 0 2 3 5 5 12 10 23 // 3rd graphic with 4 points
我需要的输出 cvs estructure 结构如下:
code x y
1 1 0
1 2 2
1 3 3
1 4 5
2 1 1
2 2 3
3 0 2
3 3 5
3 5 12
3 10 23
这是否可能仅使用 read.csv 以及如何?感谢任何帮助,谢谢!