Good evening, I contact you to ask for help. Given the file :
A= {{"\[Lambda]", "zo", "K1", "zmax", "val2", "val3", "Index"}} ,
I created a graph in which I plotted the three variables "[Lambda]", "zo", and "val1". I wrote:
p1 = ListPlot3D[A[[All, {1, 2, 4}]], PlotRange -> All, Mesh -> True, ColorFunction -> "Rainbow", AxesStyle -> Directive[14], AxesLabel -> {Style["\[Lambda] (s)", 16], Style["zo (m)", 16], Style["zmax (m)", 16],}, ViewPoint -> {1, 2, 1.3}]
and it worked. Now I want to do the same, but getting a different graph for each value of k1. A graph in which to plot the three variables with k1 = 1, another with k1 = 2, etc ... Can someone help me?