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
There are a lot of repeated names in the list of attributes, filename and then class or function name:
e.g., compute_fixed_point and compute_pf, ECDF and ecdf. We don't really need the module names here. Should they be hidden, perhaps? What's the convention?
The text was updated successfully, but these errors were encountered:
Hey @jstac I am not sure what the convention is here. I will have a look at pandas or another major project to see what style they adopt. We can adopt a style of prepending _ to module names and external packages on import. That hides them to introspection.
There are a lot of repeated names in the list of attributes, filename and then class or function name:
e.g.,
compute_fixed_point
andcompute_pf
,ECDF
andecdf
. We don't really need the module names here. Should they be hidden, perhaps? What's the convention?The text was updated successfully, but these errors were encountered: