toolkit icon indicating copy to clipboard operation
toolkit copied to clipboard

AR plot - mixed up axis labels

Open daniel-d-koenig opened this issue 5 years ago • 2 comments

Hi, I think there is a little typo of the axis labels in AR plot. The following line defines the 'Robustness' and 'Accuracy' labels: https://github.com/votchallenge/vot-toolkit-python/blob/52b5559d74a16518c5970c2f56eacc06cc0a715a/vot/analysis/ar.py#L55

In the following table I have Accuracy = 0.37 and Robustness = 0.01 for evaluation metric values, but in den plot the position of tracker in the AR plot is at around 0.4 for Robustness and 0.1 for Accuracy. I think either the labels or the evaluation results should by changed. image image image

Thanks in advance.

Best regards, Daniel

daniel-d-koenig avatar Jul 07 '20 08:07 daniel-d-koenig

Indeed, I think we have fixed this in dev branch, but it got stuck there because I am busy with other projects at the moment.

lukacu avatar Jul 14 '20 20:07 lukacu

I installed the current dev branch and generated the graphs, but unfortunately the data is still interchanged. Data on the x axis should be on y axis and vice versa.

Maybe in the following line the indices of data should be changed https://github.com/votchallenge/vot-toolkit-python/blob/458003f27d2f759fd6ada6f237323a1a01e75cd4/vot/document/init.py#L76 to handle = self._axes.scatter(data[1], data[0], **style.point_style()) this will lead that 'Accuracy' values are on y axis and 'Robustness' values on x axis.

Another possibility could be to change following function: https://github.com/votchallenge/vot-toolkit-python/blob/458003f27d2f759fd6ada6f237323a1a01e75cd4/vot/analysis/ar.py#L53

daniel-d-koenig avatar Jul 17 '20 05:07 daniel-d-koenig