I have a question regarding generating a graph in R in a three dimension. Suppose, i have the following data in a csv format file;
CPU_Usage Power_Consumption(Watt) Bandwidth
50 59 20MB
Now i want to represent this on xyz axis where the x-axis represents cpu,y represents power & z represents bandwidth. Then i would want these values to be joined together (by a line) on the three axis graph to form a triangle.There is just a single row in this data. I would appreciate if someone could help me out!
You can accomplish this with scatterplot3d (among others):
Of course, if you need to do more than one of these, you can pull the points from your data instead of hard-coding them. I thought hard-coding would make this a bit more readable.