diamond
diamond copied to clipboard
Remove created columns when copy=False
Currently, fitting the model modifies the training data frame in place when copy=False. I think we can improve the manners here.
- Remove the columns created:
row_index
andintercept
- Before creating new columns, see if they're already present. If so, raise an error.