-
Notifications
You must be signed in to change notification settings - Fork 3
Refactor/binning #69
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
Refactor/binning #69
Changes from 15 commits
58da78f
51ae0a2
3f3be49
63d4dc8
df110c9
49cb182
fd10c00
b89f7d4
bb818ff
f942a91
d2b68e3
2d2ab88
8fc32b8
47782ed
9c352f9
cd2ce7b
fcdd167
18469ff
4876190
4c18873
80aef8e
414c69a
f0aa2d8
3329492
3223850
a603d3d
92a8f5d
c6fa6d0
d60b758
031d965
734ff26
fbf0b17
b836024
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,6 +24,7 @@ | |
| 'scipy>=0.18.1', | ||
| 'numpy>=1.12.0', | ||
| 's3fs>=0.1.0', | ||
| 'dask<=0.19.2' | ||
| ], | ||
| test_requires=[ | ||
| 'moto', | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -705,12 +705,10 @@ def test_repr(): | |
| assert isinstance(res, str) | ||
| assert '10x10000' in res | ||
| assert '0 stored' in res | ||
| assert len(res.splitlines()) == 1 + 5 + 2 | ||
|
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. Why did the lines number change? I can't see any change that you made that should affect it...
Author
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. I think it's related to pandas version... 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. Well, I hope our
Author
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. It should just lines change I think depending on your terminal size? Don't know... |
||
|
|
||
| sf = SparseFrame(sparse.csr_matrix((10000, 10000))) | ||
| res = sf.__repr__() | ||
| assert isinstance(res, str) | ||
| assert len(res.splitlines()) == 1 + 5 + 2 | ||
|
|
||
| sf = SparseFrame(np.array([]), index=[], columns=['A', 'B']) | ||
| res = sf.__repr__() | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.