Summary

 scores$`Total Score` %>% summary()
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##   15.00   45.88   62.75   61.57   79.75   95.00

Histogram

hist(scores$`Total Score`, 12)

Kenrel density estimate

plot(density(scores$`Total Score`, na.rm=T, 
             from=min(scores$`Total Score`,na.rm = T), to=100, bw=6.5), lty=1, col="blue",  ann=F)

All scores

library(ggplot2)
scores %>% 
  arrange(desc(`Total Score`)) %>% 
  tibble::rownames_to_column(var="index") %>% 
  mutate(index = as.integer(index)) %>% 
  ggplot(aes(index,`Total Score`)) + 
  geom_point() +
  ylim(c(0,100)) +
  theme_minimal()