Respuesta :

The categorical variables goes in gf_facet_grid().

What are categorical variables?

Based on a characteristic, a categorical variable value can be classified into a countable number of different categories. You can apply categories to a categorical variable, but there is no inherent order to the categories.

What is a histogram?

The most typical graph for displaying frequency distributions is a histogram. It closely resembles a bar chart.

What is gf_facet_grid()?

You use it to split up histograms. Usually, the facets are described by an unnamed formula argument. We usually use this to show categorical variables.

eg) gf_histogram(~ Thumb, data = Fingers) %>%

gf_facet_grid(. ~ Sex)

So, we can say that categorical variables goes in gf_facet_grid().

To learn more about categorical variables, visit: https://brainly.com/question/13958764

#SPJ4