You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As revealed in #109 (reply in thread), the use of lcModelKML can trigger an error condition flow in transformPredict().
#116 introduced a bug in transformPredict(). If the data contains a Cluster column but the predict method is not using the Cluster column information, transformPredict() is wrongly trying to use it for merging prediction data and new data.
Current fix: predict.lcModel will remove the Cluster column if it is not being used.
Alternative potential solution: a similar useCluster toggle for transformPredict()
The text was updated successfully, but these errors were encountered:
As revealed in #109 (reply in thread), the use of
lcModelKML
can trigger an error condition flow intransformPredict()
.#116 introduced a bug in
transformPredict()
. If the data contains a Cluster column but the predict method is not using the Cluster column information,transformPredict()
is wrongly trying to use it for merging prediction data and new data.Current fix:
predict.lcModel
will remove the Cluster column if it is not being used.Alternative potential solution: a similar useCluster toggle for
transformPredict()
The text was updated successfully, but these errors were encountered: