43 lines
1.8 KiB
Python
43 lines
1.8 KiB
Python
# scipy-yli: Helpful SciPy utilities and recipes
|
|
# Copyright © 2022–2023 Lee Yingtong Li (RunasSudo)
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
from .bayes_factors import bayesfactor_afbf
|
|
from .config import config
|
|
from .descriptives import auto_correlations, auto_descriptives
|
|
from .distributions import beta_oddsratio, beta_ratio, hdi, transformed_dist
|
|
from .graphs import init_fonts
|
|
from .io import pickle_read_compressed, pickle_read_encrypted, pickle_write_compressed, pickle_write_encrypted
|
|
from .regress import IntervalCensoredCox, Logit, OLS, OrdinalLogit, PenalisedLogit, regress, vif
|
|
from .sig_tests import anova_oneway, auto_univariable, chi2, mannwhitney, pearsonr, spearman, ttest_ind, ttest_ind_multiple
|
|
from .survival import kaplanmeier, logrank, turnbull
|
|
from .utils import as_ordinal
|
|
|
|
def reload_me():
|
|
import importlib
|
|
import sys
|
|
|
|
for _ in range(2): # Do it twice to make sure imports are also reloaded fully
|
|
for k, v in list(sys.modules.items()):
|
|
if k == 'yli' or k.startswith('yli.'):
|
|
try:
|
|
importlib.reload(v)
|
|
except ModuleNotFoundError as ex:
|
|
if ex.name == k:
|
|
# Must be due to a module which we deleted - can safely ignore
|
|
pass
|
|
else:
|
|
raise ex
|