for point in points:
p.adjust(above_line(point, lin1),
p(point),
point)
evaluation = Counter()
for point in points:
if p(point) == above_line(point, lin1):
evaluation["correct"] += 1
else:
evaluation["wrong"] += 1
print(evaluation.most_common())
[('correct', 94), ('wrong', 6)]