Home
last modified time | relevance | path

Searched refs:is_month_start (Results 1 – 15 of 15) sorted by relevance

/dports/math/py-pandas/pandas-1.2.5/pandas/tests/indexes/datetimes/
H A Dtest_misc.py168 assert dti.is_month_start[0]
169 assert not dti.is_month_start[1]
170 assert dti.is_month_start[31]
197 assert len(dti.is_month_start) == 365
242 dti.is_month_start
246 assert dti.is_month_start[0] == 1
249 (Timestamp("2013-06-01", freq="M").is_month_start, 1),
250 (Timestamp("2013-06-01", freq="BM").is_month_start, 0),
251 (Timestamp("2013-06-03", freq="M").is_month_start, 0),
252 (Timestamp("2013-06-03", freq="BM").is_month_start, 1),
[all …]
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/scalar/timestamp/
H A Dtest_timestamp.py30 assert not ts.is_month_start # not a weekday
33 assert control.is_month_start
/dports/devel/py-xarray/xarray-0.20.1/xarray/core/
H A Daccessor_dt.py415 is_month_start = Properties._tslib_field_accessor( variable in DatetimeAccessor
/dports/math/py-pandas/pandas-1.2.5/doc/source/reference/
H A Dindexing.rst358 DatetimeIndex.is_month_start
H A Dseries.rst326 Series.dt.is_month_start
H A Darrays.rst75 Timestamp.is_month_start
/dports/devel/py-xarray/xarray-0.20.1/doc/
H A Dapi-hidden.rst89 core.accessor_dt.DatetimeAccessor.is_month_start
H A Dapi.rst528 DataArray.dt.is_month_start
/dports/math/py-pandas/pandas-1.2.5/pandas/_libs/tslibs/
H A Dfields.pyx218 if field == 'is_month_start':
H A Dtimestamps.pyx436 def is_month_start(self) -> bool: member in _Timestamp
443 return self._get_start_end_field("is_month_start")
H A Dnattype.pyx304 def is_month_start(self) -> bool: member in _NaT
/dports/math/py-pandas/pandas-1.2.5/pandas/core/arrays/
H A Ddatetimes.py1610 is_month_start = _field_accessor(
/dports/math/py-pandas/pandas-1.2.5/doc/source/whatsnew/
H A Dv0.14.0.rst92 - Add ``is_month_start``, ``is_month_end``, ``is_quarter_start``, ``is_quarter_end``, ``is_year_sta…
H A Dv0.20.0.rst1183 …ectly report ``False`` for datetimelike boolean operations such as ``is_month_start`` (:issue:`157…
/dports/math/py-pandas/pandas-1.2.5/doc/source/user_guide/
H A Dtimeseries.rst810 is_month_start,"Logical indicating if first day of month (defined by frequency)"