> I want to make a few modules that each do a specific type of statistical
> detection of outliers in a data set. They may or may not use PDL.
>
> [….]
>
> I'm thinking good names would be:
> - Math::Stats::Outlier::GrubbsTest
> - Math::Stats::Outlier::ESDTest
> - Math::Stats::Outlier::TietjenMooreTest
>
> Any suggestions?
Most statistics modules seem to live in Statistics::, so Statistics::Outlier::
might be a better home.
Other thoughts on namespace:
Statistics::Outliers::
Statistics::OutlierDetection::
Statistics::OutlierTest::
With the latter you could then have Statistics::OutlierTest::Grubbs
Neil