-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
API: clean-up top-level namespace #13790
Labels
Milestone
Comments
I think there is an issue for pnow already in any event I would make this a master issue and have checkboxes |
Ah yes indeed: #12641 Good question :-) Updated top comment |
8 tasks
jreback
added a commit
to jreback/pandas
that referenced
this issue
Mar 1, 2017
closes pandas-dev#13790 pd.pnow pd.groupby pd.match pd.Term pd.Expr remove info.py
jreback
added a commit
to jreback/pandas
that referenced
this issue
Mar 1, 2017
closes pandas-dev#13790 pd.pnow pd.groupby pd.match pd.Term pd.Expr remove info.py
jreback
added a commit
to jreback/pandas
that referenced
this issue
Mar 1, 2017
closes pandas-dev#13790 pd.pnow pd.groupby pd.match pd.Term pd.Expr remove info.py
jreback
added a commit
to jreback/pandas
that referenced
this issue
Mar 2, 2017
closes pandas-dev#13790 pd.pnow pd.groupby pd.match pd.Term pd.Expr remove info.py
jreback
added a commit
to jreback/pandas
that referenced
this issue
Mar 2, 2017
closes pandas-dev#13790 pd.pnow pd.groupby pd.match pd.Term pd.Expr remove info.py
jreback
added a commit
to jreback/pandas
that referenced
this issue
Mar 2, 2017
closes pandas-dev#13790 pd.pnow pd.groupby pd.match pd.Term pd.Expr remove info.py
jreback
added a commit
to jreback/pandas
that referenced
this issue
Mar 2, 2017
closes pandas-dev#13790 pd.pnow pd.groupby pd.match pd.Term pd.Expr remove info.py
jorisvandenbossche
pushed a commit
that referenced
this issue
Mar 3, 2017
closes #13790 pd.pnow pd.groupby pd.match pd.Term pd.Expr remove info.py
AnkurDedania
pushed a commit
to AnkurDedania/pandas
that referenced
this issue
Mar 21, 2017
closes pandas-dev#13790 pd.pnow pd.groupby pd.match pd.Term pd.Expr remove info.py
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Triggered by #13785, I looked at the top level namespace, and I was wondering if the following functions are needed:
pd.Expr
pd.pnow()
: returns the current date as a Period with specified freq (API: why are we importing pandas.tseries.period.pnow into the pd namespace? #12641)pd.info()
pd.groupby()
match
: "Compute locations of to_match into values" (imported fromcore/api.py
from\core\algorithms.py
together withfactorize
,unique
andvalue_counts
, but I don't thinkmatch
is used anywhere in the docs)pd.Term
Quite a lot are already deprecated:
TimeSeries
,SparseTimeSeries
, allrolling_
andexpanding_
methodsI also learned the existence of
pd.lreshape
andpd.plot_params
.. :-) (but the latter is mentioned in the docs,lreshape
not).The text was updated successfully, but these errors were encountered: