Skip to content
R for the Rest of Us Logo

This lesson is locked

Get access to all lessons in this course.

If the video is not playing correctly, you can watch it in a new window

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

  • Change the default data frame printing method to use kable

  • Choose one of the table packages and make an attractive table that shows the top 10 districts with the highest percentage of Hispanic/Latino students (hint: use the slice_max() function to get the top 10 and the fmt_percent() function if you’re using gt or the percent() function otherwise to display the percentage of Hispanic/Latino students in each)

Please note that in order to use the slice_max() function, you need to have dplyr 1.0 or greater installed.

Learn More

If you want to read more about df_print options, you can find that here.

If you’re looking for an overview of all of the table packages discussed in this lesson, check out this comprehensive blog post I wrote.

That blog post includes links to some great tutorials on the various packages. Some additional tutorials have come out since then, especially on the gt package. See, for example, tutorials by:

In case it’s not already clear, the gt package is really popular, in large part because of this endorsement from Hadley Wickham.

Have any questions? Put them below and we will help you out!

You need to be signed-in to comment on this post. Login.

Abby Isaacson

Abby Isaacson

May 25, 2021

I'm not sure at what step my years got off, but my enrollment_by_race_ethnicity dataset has always displayed '2018-2019' for one year and '2017-18' format for the other. I tried using col_labels to rename a numeric variable but it didn't work. Can I rename in gt, or do I have to go back to the dataset?

Jessica Sickler

Jessica Sickler

May 26, 2021

Is it possible to print a formatted table as an image to insert in report or document outside of R?

Jody Oconnor

Jody Oconnor

May 29, 2021

I'd like to create the 'your turn' table using flextable, but I'm not having much luck with the syntax. Could you post example code using flextable instead of gt please? Thanks!

Atlang Mompe

Atlang Mompe

June 25, 2021

Hi David, it seems that I cannot load the gt library - I have tried to follow your video? Please advise. > library(gt) Error in library(gt) : there is no package called ‘gt’

Andrew Paquin

Andrew Paquin

May 29, 2023

Hi David, As I worked through this stuff today, I received several warnings that "vars" has been deprecated and that I should used c() instead. Has vars gone the way of the pet rock? Is there a hard date after which it simple won't work at all?