hi,
I am using time series agorithm.I need standard deviation in %. I am using SELECT StudID, PREDICTSTDEV([Perf]) FROM [Stud_Model].This one is giving me the standard deviation like this
StudID stDev
001 2.891298978779
002 2.797288978779.
But I need like this
StudID stDev
001 +50%
002 +51%(From The Previous) like that.
Is it Possible.
Thanks,
Karthik.
To get the standard deviation as a percentage, you just need to get the predicted value and divide e.g.
PredictStdev([Perf])/Predict([Perf]) // of course Predict(Perf) could be 0.
However, I'm not sure what you meant by "From the Previous", though
No comments:
Post a Comment