Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
PERF: Series.dropna with non-nan dtype blocks #11159
Conversation
sinhrks
added Missing-data Performance
labels
Sep 21, 2015
sinhrks
added this to the
0.17.1
milestone
Sep 21, 2015
jorisvandenbossche
and 1 other
commented on an outdated diff
Sep 21, 2015
| + self.s2.nsmallest(3, take_last=False) | ||
| + | ||
| + | ||
| +class series_dropna_int64(object): | ||
| + goal_time = 0.2 | ||
| + | ||
| + def setup(self): | ||
| + self.s = Series(np.random.randint(1, 10, 1000000)) | ||
| + | ||
| + def series_dropna_int64(self): |
kawochen
Contributor
|
|
sure, pls add a note in 0.17.1 whatsnew |
|
@sinhrks looks good, can you rebase / add a release note |
|
Rebased, and added release note. Followings are asv results added in this PR.
|
jreback
added a commit
that referenced
this pull request
Oct 18, 2015
|
|
jreback |
53a0db1
|
jreback
merged commit 53a0db1
into pandas-dev:master
Oct 18, 2015
1 check passed
continuous-integration/travis-ci/pr
The Travis CI build passed
Details
|
thanks! |
sinhrks
deleted the
sinhrks:dropna_perf branch
Nov 7, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sinhrks commentedSep 21, 2015
Minor improvement when
dropnaactually does nothing. If OK for 0.17, I'll add a release note.