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
A summary method to present in a prettier format would be nice. I don't think it needs to be as detailed as the summary in statsmodels. This is what summary in logistf looks like:
Maybe an optional var_names parameter in .summary() so that the feature names can be printed in the summary as well, otherwise x0, x1, etc.
Probably the most straightforward way is to just stick everything in a Pandas dataframe and print (and perhaps return?) that. Pretty printing with tabulate can be considered, maybe with tabulate as just an optional dependency?
The text was updated successfully, but these errors were encountered:
A summary method to present in a prettier format would be nice. I don't think it needs to be as detailed as the summary in statsmodels. This is what summary in
logistf
looks like:Should be called like:
Maybe an optional
var_names
parameter in.summary()
so that the feature names can be printed in the summary as well, otherwise x0, x1, etc.Probably the most straightforward way is to just stick everything in a Pandas dataframe and print (and perhaps return?) that. Pretty printing with tabulate can be considered, maybe with tabulate as just an optional dependency?
The text was updated successfully, but these errors were encountered: