home.social

Search

3 results for “lewisfogden”

  1. Q:
    I'm writing a class that users will inherit from and add their own methods (for building models).

    I have a few special methods in the base class - one to run/evaluate the instance, and one to convert results to dataframe.

    I'm currently using underscore at start of these:
    _run(args)
    _to_dataframe(columns)

    However this hides them from autocomplete in most IDEs. Any suggested alternatives?