Plot n sets of 2D data in 3D
- To: mathgroup at smc.vnet.net
- Subject: [mg73264] Plot n sets of 2D data in 3D
- From: "Ivan" <darknails at gmail.com>
- Date: Fri, 9 Feb 2007 02:19:29 -0500 (EST)
Hi, I want to draw 3D surface plots for n set of 2D data, ie. n 2D plots standing next to each other. I would like to know how to label the different sets of data, say, from 1 to n. The example is Needs["Graphics`Graphics3D`"]; g1 = ListPlot[ReadList["test.dat", Number, RecordLists -> True], PlotJoined -> True]; g2 = ListPlot[ReadList["test2.dat", Number, RecordLists -> True], PlotJoined -> True]; Show[StackGraphics[{g1, g2}], Ticks -> {{1, 2, 3, 4, 5, 6}, None, {1, 2}}]; The problem is changing the "None" to, say, "{1,2}", since I have two sets of data, does not add the tick labels. It seems to have no effect. anyone know how to do this?