Skip to content

extended area under curve plot #4

Description

@Jawing

area_under_curve_x = mrec[:-1] + [mrec[-2]] + [mrec[-1]]

'+' doesn't seem to append numpy arrays, suggestion:

area_under_curve_x = mrec[:-1].tolist() + [mrec[-2]] + [mrec[-1]]
area_under_curve_y = mpre[:-1].tolist() + [0.0] + [mpre[-1]]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions