Fitting a line through 3D points
Hey everyone,I have a list of 3D points (x,y,z) that I need to fit a line to. I've tried fitting three different models, each one using the balance of the columns to predict a since output (so like Y(x,z)) but using the three outputs is not giving me a line. The best I can do is using Y(z) and X(z) and then using the values of z for the final predicted best fit (x,y,z). However, I'm not happy a...