极限点和异常点的极坐标图

时间:2017-11-24 16:09:33

标签: python python-3.x pandas matplotlib

考虑以下数据框,

null

我要做的是绘制极坐标图,用虚线表示阈值,或多个虚线表示多个阈值,不同颜色用于异常。到目前为止,我得到的是,

d = {'Score': [0.25, 0.52, 0.26, 0.22, 0.31, 2.45, 3.68, 41.3, 87, 91], 
     'Thr1': 16.5,
     'Thr2': 45.5,  
     'Anomaly':[0, 0, 0, 0, 0, 0, 0, 1, 1, 1]}

df = pd.DataFrame(data = d)

enter image description here

我无法获得阈值并改变异常点的颜色。有什么想法吗?

0 个答案:

没有答案