When using data coming from numpy int64 ndarrays, the bic function crashes because of this (in bic.py):
if not isinstance(i, (int, float)):
This could be changed to:
if not isinstance(i, (int, float, np.int64)):
instead. I also guess this applies to the other functions of this package.
When using data coming from numpy
int64ndarrays, thebicfunction crashes because of this (inbic.py):This could be changed to:
instead. I also guess this applies to the other functions of this package.