0

我目前正在使用谷歌图表 ruby​​ api 来绘制我的 ROC 曲线。您目前可以在这里看到它:http: //prntscr.com/8gnokp。(下面是代码)。

roc_curve = Gchart.scatter(
    :size => '600x400',
    :title => 'ROC curve',
    :data => [pts.collect { |x| x[0] }, pts.collect { |x| x[1] }],
    :axis_with_labels => ['x', 'y']
)

我知道 API 提供了轴标签,但我似乎找不到任何轴标题。例如,我希望 y 轴标题为“True Positives”,而 x 轴标题为“False Positives”。有没有办法做到这一点?谢谢

4

0 回答 0