Closed MaxGhenis closed 4 years ago
This adds the following five functions:
hide_n
hide_r2
hide_adj_r2
hide_residual_std_err
hide_f_statistic
Each is of the form hide_*(self, hide=True), making it easy to hide the element via hide_*(), and also an option to undo via hide_*(False).
hide_*(self, hide=True)
hide_*()
hide_*(False)
Example in action:
This also includes #53 for a thousands separator (I'm using both in my branch).
I'm not in favor of adding functions just to change attributes... even more so given the planned API change ( #44 )
This adds the following five functions:
hide_n
hide_r2
hide_adj_r2
hide_residual_std_err
hide_f_statistic
Each is of the form
hide_*(self, hide=True)
, making it easy to hide the element viahide_*()
, and also an option to undo viahide_*(False)
.Example in action:
This also includes #53 for a thousands separator (I'm using both in my branch).