Function which finds the outermost points in order to be used as initial solution in archetypal analysis
Function which finds the outermost points in order to be used as initial solution in archetypal analysis
find_outmost_points(df, kappas)
Arguments
df: The data frame with dimensions n x d
kappas: The number of archetypes
Returns
A list with members:
outmost, the first kappas most frequent outermost points as rows of data frame
outmostall, all the outermost points that have been found as rows of data frame
outmostfrequency, a matrix with frequency and cumulative frequency for outermost rows
Warning
This is a rather naive way to find the outermost points of a data frame and it should be used with caution since for a n x d matrix we need in general 8 n^2/(2^30) GB RAM for numeric case. Check your machine and use it. As a rule of thumb we advice its usage for n less or equal than 20000.