Most functions use lower case words separated by underscores, except when they are abbreviations of the main function GenericML(). But then there are some functions that break with that convention: Med() and TrueIfUnix().
For example, the latter can be renamed to check_unix(). Perhaps something like median_LU() can be used for the former, since med() may already exist in other packages or could easily be confused with mad().
Most functions use lower case words separated by underscores, except when they are abbreviations of the main function
GenericML()
. But then there are some functions that break with that convention:Med()
andTrueIfUnix()
.For example, the latter can be renamed to
check_unix()
. Perhaps something likemedian_LU()
can be used for the former, sincemed()
may already exist in other packages or could easily be confused withmad()
.