Render large numbers as with thousands separators in a shiny DataTable by default.
The documentation reads (to me) like it should alr
Try formatting the df you pass to renderDatatable() with thousands formatting
renderDatatable()
df$x <- format(df$x, big.mark=',', scientific=FALSE)
Or
df$x<-prettyNum(df$x, big.mark = ",")