Old engine for Continuous Time Bayesian Networks. Superseded by reCTBN. 🐍
https://github.com/madlabunimib/PyCTBN
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
643 B
28 lines
643 B
4 years ago
|
import pytest
|
||
|
|
||
|
from pandas._libs.tslibs.offsets import MonthOffset
|
||
|
|
||
|
import pandas.tseries.offsets as offsets
|
||
|
|
||
|
|
||
|
@pytest.fixture(params=[getattr(offsets, o) for o in offsets.__all__])
|
||
|
def offset_types(request):
|
||
|
"""
|
||
|
Fixture for all the datetime offsets available for a time series.
|
||
|
"""
|
||
|
return request.param
|
||
|
|
||
|
|
||
|
@pytest.fixture(
|
||
|
params=[
|
||
|
getattr(offsets, o)
|
||
|
for o in offsets.__all__
|
||
|
if issubclass(getattr(offsets, o), MonthOffset) and o != "MonthOffset"
|
||
|
]
|
||
|
)
|
||
|
def month_classes(request):
|
||
|
"""
|
||
|
Fixture for month based datetime offsets available for a time series.
|
||
|
"""
|
||
|
return request.param
|