FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker-python/test_pytables.py at main · Kaggle/docker-python · GitHub
Kaggle
/
docker-python
Public
Notifications
You must be signed in to change notification settings
Fork
1k
Star
2.7k
Code
Issues
25
Pull requests
8
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
docker-python
/
test_pytables.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
13 lines (9 loc) · 346 Bytes
Breadcrumbs
docker-python
/
test_pytables.py
Copy path
File metadata and controls
13 lines (9 loc) · 346 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
import
unittest
import
pandas
as
pd
from
pandas
.
testing
import
assert_frame_equal
class
TestPandasPytables
(
unittest
.
TestCase
):
def
test_rw_hd5
(
self
):
want
=
pd
.
DataFrame
([[
1
,
1.0
,
'a'
]],
columns
=
[
'x'
,
'y'
,
'z'
])
want
.
to_hdf
(
'./want.h5'
,
'data'
)
got
=
pd
.
read_hdf
(
'./want.h5'
)
assert_frame_equal
(
want
,
got
)
Back
|
FazBrowse Home
|
New Git URL