mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-16 15:45:51 +00:00
Add fields to dataset table report
This commit is contained in:
@@ -44,5 +44,8 @@ body {
|
||||
padding-left: 0.5rem;
|
||||
}
|
||||
|
||||
.nav-benchmark{
|
||||
color:yellow;
|
||||
}
|
||||
|
||||
|
||||
|
@@ -14,4 +14,14 @@ $(document).ready(function () {
|
||||
$(document).ajaxStop(function(){
|
||||
$("body").removeClass('ajaxLoading');
|
||||
});
|
||||
});
|
||||
});
|
||||
function remove_plus(a, b) {
|
||||
var aa = a.split('±')[0]
|
||||
var bb = b.split('±')[0]
|
||||
return aa - bb
|
||||
}
|
||||
function remove_dot(a, b) {
|
||||
var aa = a.replace(',', '').replace('.', '')
|
||||
var bb = b.replace(',', '').replace('.', '')
|
||||
return aa - bb
|
||||
}
|
Reference in New Issue
Block a user