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
However, the intent is very clear: we only want to standardize x. The current way to do this is via an include list which is given as an explicit keyword argument:
a.standardize(include="x")
However, this seems a little bit ugly. We could allow users to pass this as a positional argument as well. So long as none of the keyword-only arguments are defined, we default to turning the positional argument into the include list.
The text was updated successfully, but these errors were encountered:
The following call will raise a confusing error:
However, the intent is very clear: we only want to standardize x. The current way to do this is via an include list which is given as an explicit keyword argument:
However, this seems a little bit ugly. We could allow users to pass this as a positional argument as well. So long as none of the keyword-only arguments are defined, we default to turning the positional argument into the include list.
The text was updated successfully, but these errors were encountered: