otava/series.py [491:499]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            new_list = list()
            for cp in change_points:
                stat = ComparativeStats(cp["mean_before"], cp["mean_after"], cp["stddev_before"],
                                        cp["stddev_after"], cp["pvalue"])
                new_list.append(
                    ChangePoint(
                        index=cp["index"], time=cp["time"], metric=cp["metric"], stats=stat
                    )
                )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



otava/series.py [504:512]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            new_list = list()
            for cp in change_points:
                stat = ComparativeStats(cp["mean_before"], cp["mean_after"], cp["stddev_before"],
                                        cp["stddev_after"], cp["pvalue"])
                new_list.append(
                    ChangePoint(
                        index=cp["index"], time=cp["time"], metric=cp["metric"], stats=stat
                    )
                )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



