vihds/plotting.py [356:370]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                mu = res.iw_predict_mu[loc, idx, :]
                std = res.iw_predict_std[loc, idx, :]

                ax.fill_between(
                    res.times, (mu - 2 * std) / maxi, (mu + 2 * std) / maxi, alpha=0.25, color=colors[idx],
                )
                ax.plot(res.times, res.X_obs[loc, idx, :] / maxi, "k.", markersize=2)
                ax.plot(res.times, mu / maxi, "-", lw=2, alpha=0.75, color=colors[idx])
                ax.set_xlim(0.0, 17)
                ax.set_xticks([0, 5, 10, 15])
                ax.set_ylim(-0.2, 1.2)
                ax.tick_params(axis="both", which="major", labelsize=fs)

                if i == 0:
                    pp.title(res.settings.signals[idx], fontsize=fs)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



vihds/plotting.py [422:436]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                mu = res.iw_predict_mu[loc, idx, :]
                std = res.iw_predict_std[loc, idx, :]

                ax.fill_between(
                    res.times, (mu - 2 * std) / maxi, (mu + 2 * std) / maxi, alpha=0.25, color=colors[idx],
                )
                ax.plot(res.times, res.X_obs[loc, idx, :] / maxi, "k.", markersize=2)
                ax.plot(res.times, mu / maxi, "-", lw=2, alpha=0.75, color=colors[idx])
                ax.set_xlim(0.0, 17)
                ax.set_xticks([0, 5, 10, 15])
                ax.set_ylim(-0.2, 1.2)
                ax.tick_params(axis="both", which="major", labelsize=fs)

                if i == 0:
                    pp.title(res.settings.signals[idx], fontsize=fs)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



