Use the scales Package for Nicely Formatted Values
This lesson is called Use the scales Package for Nicely Formatted Values, part of the R in 3 Months (Fall 2021) course. This lesson is called Use the scales Package for Nicely Formatted Values, part of the R in 3 Months (Fall 2021) course.
Transcript
Click on the transcript to go to that point in the video. Please note that transcripts are auto generated and may contain minor inaccuracies.
Your Turn
Make a new variable called
percent_display
that shows thepercent_of_total_enrollment
variable as a nicely formatted percent (rounded to the nearest whole number)Make sure you save this as
highlight_district
(i.e. don’t just display the result)
Learn More
The best place to learn more about the scales
package is its documentation website. You’ll see that you can format a wide range of values using this package, including dollar values, dates, times, and more.
Dana Siedel gave a nice talk at rstudio::conf 2020 about the scales package that is well worth a 20-minute watch!
Have any questions? Put them below and we will help you out!
Course Content
134 Lessons
You need to be signed-in to comment on this post. Login.
Juan Clavijo • November 28, 2021
Hello,
I had already rounded my proportions and multiplied by 100 so I now have 39.4, for example. when running this I get 3940%. Is there a way to make it a 39.4% without undoing the previous rounding? Also, do I need to do this if I already have the 39.4 for graphing purposes?
Matt M • December 6, 2021
When I run highlight_dataframe <- mutate(percent_display = percent('Percent of Total', accuracy = 1)) I get the error: Error in UseMethod("round_any") : no applicable method for 'round_any' applied to an object of class "character"
If i remove the ", accuracy = 1" I get the error: "Error in x * scale : non-numeric argument to binary operator"
but the 'Percent of Total' variable is numeric (when I mouseover, it says "numeric with range 0-1"
Mark Lewis • December 5, 2022
I work with a step like this pretty often, but always seem to run into some complication or other. I like the idea here of making a completely new column for the display value. I see that
scales::percent()
has been deprecated in favor ofscales::label_percent()
. Butlabel_percent()
says it's designed to be used in alabels
argument in a ggplot scale. Do you have a sense of what the consequences are (if any) of using it outside that context, like in a simplemutate()
of the sort you're doing here?