forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest_retain_attributes.py
92 lines (74 loc) · 2.9 KB
/
test_retain_attributes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import pytest
from pandas import (
DataFrame,
DatetimeIndex,
Series,
_testing as tm,
date_range,
errors,
read_hdf,
)
from pandas.tests.io.pytables.common import (
_maybe_remove,
ensure_clean_store,
)
pytestmark = pytest.mark.single_cpu
def test_retain_index_attributes(setup_path, unit):
# GH 3499, losing frequency info on index recreation
dti = date_range("2000-1-1", periods=3, freq="h", unit=unit)
df = DataFrame({"A": Series(range(3), index=dti)})
with ensure_clean_store(setup_path) as store:
_maybe_remove(store, "data")
store.put("data", df, format="table")
result = store.get("data")
tm.assert_frame_equal(df, result)
for attr in ["freq", "tz", "name"]:
for idx in ["index", "columns"]:
assert getattr(getattr(df, idx), attr, None) == getattr(
getattr(result, idx), attr, None
)
dti2 = date_range("2002-1-1", periods=3, freq="D", unit=unit)
# try to append a table with a different frequency
with tm.assert_produces_warning(errors.AttributeConflictWarning):
df2 = DataFrame({"A": Series(range(3), index=dti2)})
store.append("data", df2)
assert store.get_storer("data").info["index"]["freq"] is None
# this is ok
_maybe_remove(store, "df2")
dti3 = DatetimeIndex(
["2001-01-01", "2001-01-02", "2002-01-01"], dtype=f"M8[{unit}]"
)
df2 = DataFrame(
{
"A": Series(
range(3),
index=dti3,
)
}
)
store.append("df2", df2)
dti4 = date_range("2002-1-1", periods=3, freq="D", unit=unit)
df3 = DataFrame({"A": Series(range(3), index=dti4)})
store.append("df2", df3)
def test_retain_index_attributes2(tmp_path, setup_path):
path = tmp_path / setup_path
with tm.assert_produces_warning(errors.AttributeConflictWarning):
df = DataFrame(
{"A": Series(range(3), index=date_range("2000-1-1", periods=3, freq="h"))}
)
df.to_hdf(path, key="data", mode="w", append=True)
df2 = DataFrame(
{"A": Series(range(3), index=date_range("2002-1-1", periods=3, freq="D"))}
)
df2.to_hdf(path, key="data", append=True)
idx = date_range("2000-1-1", periods=3, freq="h")
idx.name = "foo"
df = DataFrame({"A": Series(range(3), index=idx)})
df.to_hdf(path, key="data", mode="w", append=True)
assert read_hdf(path, key="data").index.name == "foo"
with tm.assert_produces_warning(errors.AttributeConflictWarning):
idx2 = date_range("2001-1-1", periods=3, freq="h")
idx2.name = "bar"
df2 = DataFrame({"A": Series(range(3), index=idx2)})
df2.to_hdf(path, key="data", append=True)
assert read_hdf(path, "data").index.name is None