Given the phytosociological table m_bin (rows corresponding to
taxa and columns corresponding to relevés), this function uses a
Greedy-type algorithm (a simplified version of the Greedy algorithm) to
obtain a k-partition (k, defined by the user) of the columns of
m_bin, aiming at high values of TDV.
The algorithm operates in the following way: Firstly, k columns are
selected randomly to work as seeds for each one of the desired k groups.
Secondly, one of the remaining columns is selected randomly and added to
the partition group which maximizes the upcoming TDV. This second step is
repeated until all columns are placed in a group of the k-partition.
This function is expected to perform faster than partition_tdv_grasp(),
yet returning worse partitions in terms of TDV. For the (true) Greedy
algorithm see partition_tdv_grasp().
See tdv() for an explanation on the TDV of a phytosociological table.