I am working with an external data source and I am trying to get Quaterstart(QS) frequency for a particular data field. I am providing a dummy data and code below.
JavaScript
x
6
1
import pandas as pd
2
df = pd.DataFrame(data=[['2022-01-01', '2021-01-03', 'a'], ['2020-05-01', '2021-03-03', 'b'],
3
['2023-06-02', '2019-04-03', 'c']], columns=['open_dt', 'd2', 'x'])
4
df['open_dt'] = df['open_dt'].astype('datetime64[ns]')
5
df['quater_open_dt'] = df['open_dt'].dt.to_period('QS')
6
I am gettinng the following error when I run this
JavaScript
1
48
48
1
---> 7 df['quater_open_dt'] = df['open_dt'].dt.to_period('QS')
2
8 df['establish_date'] = df['establish_date'].astype('datetime64[ns]')
3
9 df_tin = grp_on_tin(df)
4
5
/opt/miniconda3/envs/PY37/lib/python3.7/site-packages/pandas/core/accessor.py in f(self, *args, **kwargs)
6
90 def _create_delegator_method(name):
7
91 def f(self, *args, **kwargs):
8
---> 92 return self._delegate_method(name, *args, **kwargs)
9
93
10
94 f.__name__ = name
11
12
/opt/miniconda3/envs/PY37/lib/python3.7/site-packages/pandas/core/indexes/accessors.py in _delegate_method(self, name, *args, **kwargs)
13
107
14
108 method = getattr(values, name)
15
--> 109 result = method(*args, **kwargs)
16
110
17
111 if not is_list_like(result):
18
19
/opt/miniconda3/envs/PY37/lib/python3.7/site-packages/pandas/core/indexes/extension.py in method(self, *args, **kwargs)
20
81
21
82 def method(self, *args, **kwargs):
22
---> 83 result = attr(self._data, *args, **kwargs)
23
84 if wrap:
24
85 if isinstance(result, type(self._data)):
25
26
/opt/miniconda3/envs/PY37/lib/python3.7/site-packages/pandas/core/arrays/datetimes.py in to_period(self, freq)
27
1121 freq = res
28
1122
29
-> 1123 return PeriodArray._from_datetime64(self._data, freq, tz=self.tz)
30
1124
31
1125 def to_perioddelta(self, freq):
32
33
/opt/miniconda3/envs/PY37/lib/python3.7/site-packages/pandas/core/arrays/period.py in _from_datetime64(cls, data, freq, tz)
34
236 PeriodArray[freq]
35
237 """
36
--> 238 data, freq = dt64arr_to_periodarr(data, freq, tz)
37
239 return cls(data, freq=freq)
38
240
39
40
/opt/miniconda3/envs/PY37/lib/python3.7/site-packages/pandas/core/arrays/period.py in dt64arr_to_periodarr(data, freq, tz)
41
975 data = data._values
42
976
43
--> 977 base = freq._period_dtype_code
44
978 return c_dt64arr_to_periodarr(data.view("i8"), base, tz), freq
45
979
46
47
AttributeError: 'pandas._libs.tslibs.offsets.QuarterBegin' object has no attribute '_period_dtype_code'
48
Can someone please help me understand what’s happening here? ps: The data given here is dummy data and not the original data
Advertisement
Answer
Your syntax is incorrect, try like this instead:
JavaScript
1
2
1
df["quater_open_dt"] = df["open_dt"].dt.to_period("Q").dt.start_time
2
JavaScript
1
7
1
print(df)
2
# Output
3
open_dt d2 x quater_open_dt
4
0 2022-01-01 2021-01-03 a 2022-01-01
5
1 2020-05-01 2021-03-03 b 2020-04-01
6
2 2023-06-02 2019-04-03 c 2023-04-01
7