Closed
Description
calling fit or transform fails for most estimators having a copy or copy_x or copy_X parameter (see #14480).
We could
- raise an error with a more informative message.
- emit a warning and copy the data
- copy data silently and say in the docstring that even if copy=False a copy will still be made if X is read-only (we already do that for other reasons)
WDYT ?