-
-
Notifications
You must be signed in to change notification settings - Fork 18.8k
Closed
Labels
API DesignIdeasLong-Term Enhancement DiscussionsLong-Term Enhancement DiscussionsIndexingRelated to indexing on series/frames, not to indexes themselvesRelated to indexing on series/frames, not to indexes themselves
Milestone
Description
This would allow chaining operations like:
pd.read_csv('imdb.txt')
.sort(columns='year')
.filter(lambda x: x['year']>1990) # <---this is missing in Pandas
.to_csv('filtered.csv')
For current alternatives see:
http://stackoverflow.com/questions/11869910/pandas-filter-rows-of-dataframe-with-operator-chaining
Metadata
Metadata
Assignees
Labels
API DesignIdeasLong-Term Enhancement DiscussionsLong-Term Enhancement DiscussionsIndexingRelated to indexing on series/frames, not to indexes themselvesRelated to indexing on series/frames, not to indexes themselves