Hi @iglesu and @jacquesalice I've pushed a commit to this branch, fixing all issues (I think):
Deprecation of np.filter.filterwarnings(): instead of a global import warnings; warnings.filterwarnings('ignore') now using the more narrow np.seterr(divide='ignore') or np.seterr(invalid='ignore') or both.
Deprecation of pd.append(). Now using pd.concat().
Fixed a bug in a function in NB 3_GOGREENS..., and its call, which prevented a star symbol to be plotted.
Replaced the label=str(np.int(snr)) issue with the cleaner label="%d" % snr
Updated version stamps in these four NBs.
Added HTML rendered versions too.
Tested all four NBs on gp12 and GCP, they now run fine. Will merge this PR.
Hi @iglesu and @jacquesalice I've pushed a commit to this branch, fixing all issues (I think):
np.filter.filterwarnings()
: instead of a globalimport warnings; warnings.filterwarnings('ignore')
now using the more narrownp.seterr(divide='ignore')
ornp.seterr(invalid='ignore')
or both.pd.append()
. Now usingpd.concat()
.label=str(np.int(snr))
issue with the cleanerlabel="%d" % snr
Tested all four NBs on gp12 and GCP, they now run fine. Will merge this PR.