shankarpandala / lazypredict

Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning
MIT License
2.86k stars 329 forks source link

how to get per cases prediction results? #334

Closed JunMa11 closed 3 years ago

JunMa11 commented 3 years ago

Is your feature request related to a problem? Please describe. I run the demo code and find the models and predictions are the same.

image

Describe the solution you'd like

How can I get the per case predictions?

Kindest regards, Jun

shankarpandala commented 3 years ago

@JunMa11 You just need use predictions = True in the LazyRegressor or LazyClassifier. Assign the output to models, predictions. Then you will see predictions dataframe with predictions on test data for all the models

JunMa11 commented 3 years ago

Hi @shankarpandala ,

Got it.

Thanks for your reply very much:)

Best, Jun