I created a plot based on a series of 3D points (x,y,z). Here is a sample of the code I used:
ListPlot3D[{{0.44, 4.99 E - 05, 14.94}, {0.48, 4.99 E - 05, 14.91}, {0.52, 4.99 E - 05, 14.86}, {0.55, 4.99 E - 05, 14.84}, {0.58, 1.99 E - 04, 14.80}, {0.61, 4.99 E - 05, 14.75},{4.99 E - 05, 4.99 E - 05, 14.89}, {4.99 E - 05, 4.99 E - 05, 14.86}, {2.49 E - 04, 4.99 E - 05, 14.82}}, PlotRange ->Full]
All the x and y values of the points are less than 1, yet in the resulting graph the X axis has a domain of 0 to 6 while the Y axis goes from 0 to 8.
I want the axes to reflect my data, so what I want is to rescale the X and Y axes to a range from 0 to 1 without losing any points.
One thing I tried was to use DataRange -> {{0, 1}, {0, 1}}, but this makes the Graphs weird
What do you suggest?