Use percentages for an axis? #54
-
I want to make the y-axis use percentages instead of decimals (.5% instead of .005). The ggplot solution seems to be |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
In the next release we are adding the "format" option to scales. The next release is coming soon - right after St.Patrick's I hope. In the current version you can only format tooltips. |
Beta Was this translation helpful? Give feedback.
-
Hi @BenWoodworth , since v1.3.0 the formatting option is available on positional scales. Now you can write |
Beta Was this translation helpful? Give feedback.
-
Thanks you! :) |
Beta Was this translation helpful? Give feedback.
Hi @BenWoodworth , since v1.3.0 the formatting option is available on positional scales. Now you can write
scale_y_continuous(format=".1%")
to format 0.005 as .5% .