I would like to format the numbers on the continuous axis in the ggplot graph. I would like to have French formatting for large numbers with a space every three digits (i.e. "20,000" instead of "20,000"). I know that this can be done using the format() function (for example, format(20000, scientific=FALSE, big.mark = " ") ), but I donβt know how to combine this function with ggplot. I can imagine that there is an option in scale_y_continuous() , but I could not find the solution myself. Here is my gist file .
source share