In Travelling Salesman Problem setting, a dataset of observed paths that visit each vertex once with a fixed starting point is given. The shortest paths (TSP paths) and Nearest Neighbour paths are considered and my task is to decide which algorithm describes the observed paths better. My only idea is to compare the percentage of TSP paths and NN paths in the given dataset. Is there a statistical method applicable to this problem?
UPDATE Let us consider two "closeness" of the given path starting from the fixed vertex $O$ to the TSP and NN paths respectively $$ \rho_{TSP}={\rm the\, length\, of\, the\, given\, path - the\, length\, of\, the\, shortest\, TSP\, path} $$ and $$ \rho_{NN}=\# {\rm edges}\, AB\, {\rm on\, the\, given\, path\, such\, that}\, B\, {\rm is\, the\, nearest\, vertex\, to}\, A\, {\rm among\, the\, unvisited\, vertices} - \# {\rm all\, vertices} $$ Then one can consider the set of the points on the plane with coordinates $(\rho_{TSP}({\rm path}),\rho_{NN}({\rm path}))$ for all possible paths and the distinguished point $(\rho_{TSP}({\rm given\, path}),\rho_{NN}({\rm given\, path})$. I think that this data somehow can allow one to determine if the given path is closer to the TSP path or the NN path.