parsifal
parsifal copied to clipboard
Order articles by score
Hi,
It would be very useful to be able to order the list of articles by score, especially during quality assessment and data extraction. That way, one start by reviewing the most important articles, and can even ignore them after certain limit if there are too many articles and little time.
I've been using this code in the console, in case anyone finds it useful:
Descending order:
$('.quality-assessment').append($('.panel-quality-assessment')
.sort(function(a, b) {
return $(b).find('.score').text() - $(a).find('.score').text();
}));
Ascending order:
$('.quality-assessment').append($('.panel-quality-assessment')
.sort(function(a, b) {
return $(a).find('.score').text() - $(b).find('.score').text();
}));
Hey @jachinte I will make it available soon!
Awesome, thanks @vitorfs!