resetCorrelationMatrix

You can reset the correlation information between all your data elements which has been created from all previous danubeRecommendation method calls by using the resetCorrelationMatrix method provided by the DanubeClient class. Note that this is a powerful operation as your whole data history will be deleted! If you should accidentally reset your correlation matrix you can contact us and we will try to help.

Method

Below, the method's header is shown, as it is provided by DanubeClient.

/*
 * Resets the current correlation matrix of this API key.
 *
 * @returns true if the correlation matrix was successfully resetted.
 */
public async resetCorrelationMatrix(): Promise<boolean> {
  ...
}