I'm sure this has been asked before. If you can find a good link I'll happily delete the question but I'm not having any luck with Google. I have a CSV file named "myData.csv", i can read the data in that file from R
myData <- read.csv (fil.choose(), header=T)
But how can i draw any 3 D plot from the data that i have already read using R i don't want to rewrite the data again in R, i just need to manipulate myData
myData.csv
x y value
0 0 4.35
0 1 4.23
0 2 4.24
1 0 4.34
1 1 4.23
1 2 4.22
2 0 4.34
2 1 4.22
2 2 4.22