Closed
Description
The documentation for EllipticEnvelope fit method says:
X : numpy array or sparse matrix, shape (n_samples, n_features).
However, when trying to fit with a sparse CSR matrix, an exception is thrown:
TypeError: A sparse matrix was passed, but dense data is required. Use X.todense() to convert to a dense numpy array.