I am trying to model the arch of a basketball free throw projectory. Usually per person, this dataset has 6 points each where it is the height of the basketball via various seconds after the player throws the ball. The dataset itself sometimes is very "peaky", one would expect to be almost smooth from the data itself but it has a little zig zag. I am trying to build a model with x parameter variables such as height of the person, arm length, bmi, activeScore (from 1 to 10 for how active is the person) to estimate these various points:
datapt1: freethrow stance height when ball is primed to throw datapt2: 1s after person throws datapt3: 2s after datapt4: 3s after datapt5: 4s after datapt6: 5s after
What method would you suggest to do this? Multiple linear regression produces peaky estimations as mentioned above whereas the nature of this model should exhibit a smooth curve spline like shape.