We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3784f84 commit 2d3d4ebCopy full SHA for 2d3d4eb
inst/shiny/A10Ca_infer/app.R
@@ -184,6 +184,8 @@ server <- function(input, output) {
184
ranking <- ranking[order(-ranking$score, as.numeric(ranking$date)), ]
185
ranking$date <- as.POSIXct(ranking$date, origin = "1960-01-01")
186
ranking$date <- format(ranking$date, "%Y-%m-%d %H:%M:%S")
187
+ # Keep only best score for each student or team
188
+ ranking <- ranking[!duplicated(ranking$project), ]
189
}
190
message("Date reworked")
191
# Add a column with medals for the three first results
0 commit comments