-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
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
ENH: between_time, at_time accept axis parameter #21799
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
b139cb1
ENH: between_time, at_time accept axis parameter
yrhooke 51b7e61
PEP8 adjustment for ttests
yrhooke adf543d
added version/issue info for 8839
yrhooke bc83f9d
whatsnew merge with master
yrhooke ad41871
test_between_time parametrization simplified, raises test created
yrhooke 5ea87f4
0, 1 axes added to tests
yrhooke 4ab35ee
test_between_time_axis uses tuples
yrhooke 35b4b41
flake8 fixes
yrhooke 2172bc9
Merge branch 'master' into PR_TOOL_MERGE_PR_21799
jreback 3a9550e
use axis fixture
jreback 9ae360f
parameterize
jreback File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -817,6 +817,17 @@ def test_between_time_formats(self): | |
for time_string in strings: | ||
assert len(ts.between_time(*time_string)) == expected_length | ||
|
||
def test_between_time_axis(self): | ||
# issue 8839 | ||
rng = date_range('1/1/2000', periods=100, freq='10min') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can you add the issue number as a comment (to all new tests) |
||
ts = Series(np.random.randn(len(rng)), index=rng) | ||
stime, etime = ('08:00:00', '09:00:00') | ||
expected_length = 7 | ||
|
||
assert len(ts.between_time(stime, etime)) == expected_length | ||
assert len(ts.between_time(stime, etime, axis=0)) == expected_length | ||
pytest.raises(ValueError, ts.between_time, stime, etime, axis=1) | ||
|
||
def test_to_period(self): | ||
from pandas.core.indexes.period import period_range | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just remove the paramerize, the axis is already defined