ywx649999311 / EzTao

A Python Toolkit for AGN Time Series Analysis using CARMA models
MIT License
17 stars 9 forks source link

Fix import bug in carma_fit.py #62

Closed matthew-lowery closed 2 years ago

matthew-lowery commented 2 years ago

Changing

'from scipy.stats import median_absolute_deviation as mad'

to

'from scipy.stats import median_abs_deviation as mad'

in eztao/ts/carma_fit.py

--> b/c ImportError: cannot import name 'median_absolute_deviation' from 'scipy.stats'