Replying to my own question.
I did some more digging and found this function: Fit Transform to Normal().
Names Default To Here(1);
datavec = [-3.7975076, 0.48221038, -1.3082712,
-1.860647, -6.9470789, -17.237024, -19.470857,
-6.1855986, 2.16525629, -30.990061];
freqvec = [1, 1, 1, 1, 1, 2, 2, 2, 2, 2];
As Table(datavec || freqvec);
Column(1) << set name("x");
Column(2) << set name("freq vec");
results =
Fit Transform To Normal(
Distribution("glog"),
Y(datavec),
freq(freqvec)
);
Show(results);
I'm trying to figure out what it does though. At first glance, it appears to fit a vector of data to Johnson SL/SB/SU or GLog distributions, returning the parameters for that respective distribution. If so, this is exactly what I want. Is anyone more familiar with this function though, and do I understand it correctly?
I'm confused bc the function name seems to imply it is transforming the vector into a normal distribution, but if that were the case, how would that be different from simply fitting your data to a normal distribution? I don't fully understand when this function would be used. If anyone out there knows, please share!