我正在尝试使用像下面给定的pandas默认实用工具来可视化箱形图。
>>> import pandas as pd
>>> df = pd.read_csv('out.tsv',sep='\t')
>>> df
Unnamed: 0 specificity sensitivity presison mcc f1
0 LR 1.00 0.00 0.00 0.00 0.00
1 GNB 0.70 0.90 0.72 0.63 0.76
2 KNB 0.65 0.63 0.73 0.30 0.63
3 DT 0.70 0.70 0.72 0.45 0.66
4 SV 1.00 0.00 0.00 0.00 0.00
>>> df.boxplot()
它返回由情节引导的对象:
<matplotlib.axes._subplots.AxesSubplot object at 0x7fe319bf5b90>
如何可视化此图?
谢谢。