-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improving introspection way for Python functions #4
Comments
My idea has changed a bit. |
A problem in the idea of the separation is that people need to consider a object is a just Ruby object or a wrapper of Python object. And, I think |
Wouldn't it be better to merge the output of |
@baarkerlounger Thank you for your feedback. I've reconsidered that it's not bad to merge the output of |
For now, we have no choice but to use
df.__dir__
to check the available pandas methods.It might be a good idea to retrieve the function names from
df.__dir__
and re-define thedf
class methods with it.The text was updated successfully, but these errors were encountered: