| rank | title | amount | 
|---|---|---|
| 1 | Star Wars | 71.57 | 
| 2 | Jumanji | 36.17 | 
| 3 | Pitch Perfect 3 | 19.93 | 
| 4 | Greatest Showman | 8.81 | 
| 5 | Ferdinand | 7.32 | 
2025-07-10
Example: Highest grossing movies Dec. 2017
| rank | title | amount | 
|---|---|---|
| 1 | Star Wars | 71.57 | 
| 2 | Jumanji | 36.17 | 
| 3 | Pitch Perfect 3 | 19.93 | 
| 4 | Greatest Showman | 8.81 | 
| 5 | Ferdinand | 7.32 | 
Data source: Box Office Mojo
Bar lengths do
not accurately
 represent the
data values
 
Key features
of the data
are obscured
 
Data source: United States Census Bureau, 2016
Data source: United States Census Bureau, 2016
Data source: United States Census Bureau, 2016
# Data from Box Office Mojo for Dec. 22-24, 2017. 
boxoffice <- tibble(
  rank = 1:5,
  title = c(
    "Star Wars", "Jumanji", "Pitch Perfect 3",
    "Greatest Showman", "Ferdinand"
  ),
  amount = c(71.57, 36.17, 19.93, 8.81, 7.32) # million USD
)
boxoffice# A tibble: 5 × 3
   rank title            amount
  <int> <chr>             <dbl>
1     1 Star Wars         71.6 
2     2 Jumanji           36.2 
3     3 Pitch Perfect 3   19.9 
4     4 Greatest Showman   8.81
5     5 Ferdinand          7.32# A tibble: 344 × 8
   species island    bill_length_mm bill_depth_mm flipper_length_mm body_mass_g
   <fct>   <fct>              <dbl>         <dbl>             <int>       <int>
 1 Adelie  Torgersen           39.1          18.7               181        3750
 2 Adelie  Torgersen           39.5          17.4               186        3800
 3 Adelie  Torgersen           40.3          18                 195        3250
 4 Adelie  Torgersen           NA            NA                  NA          NA
 5 Adelie  Torgersen           36.7          19.3               193        3450
 6 Adelie  Torgersen           39.3          20.6               190        3650
 7 Adelie  Torgersen           38.9          17.8               181        3625
 8 Adelie  Torgersen           39.2          19.6               195        4675
 9 Adelie  Torgersen           34.1          18.1               193        3475
10 Adelie  Torgersen           42            20.2               190        4250
# ℹ 334 more rows
# ℹ 2 more variables: sex <fct>, year <int>
geom_bar() to count before plottingOption 2: Using fct_rev() and fct_infreq() from the forcats package
NAs)position = "dodge": Place bars for subgroups side-by-side
position = "stack": Place bars for subgroups on top of each other
position = "fill": Like "stack", but scale to 100%
geom_bar(), geom_col()position_stack(), position_fill()