See Issue #108 on cegpy repo (g-walley/cegpy#108). The logging level needs to be changed in the main package but manually changing the logging level on jupyter doesn't seem to work either.
i.e. the following code does nothing
import logging logging.basicConfig(level=logging.WARNING)
If it works, it should give a warning with the following code for any dataset:
set some_prior and some_alpha
stagedtree.calculate_AHC_transitions(prior = some_prior, alpha = some_alpha)
Expected warning: "Params Warning!! When prior is given, alpha is not required!"
See Issue #108 on cegpy repo (g-walley/cegpy#108). The logging level needs to be changed in the main package but manually changing the logging level on jupyter doesn't seem to work either.
i.e. the following code does nothing
import logging logging.basicConfig(level=logging.WARNING)If it works, it should give a warning with the following code for any dataset:
set some_prior and some_alpha
stagedtree.calculate_AHC_transitions(prior = some_prior, alpha = some_alpha)Expected warning: "Params Warning!! When prior is given, alpha is not required!"