68,342 views
37 votes
37 votes
What is a geam in the ggplot2 system?

a) a plotting object like point, line, or other shape
b) a method for making conditioning plots
c) a method for mapping data to attributes like color and size
d) a statistical transformation

User Nobinobiru
by
3.1k points

1 Answer

15 votes
15 votes

Answer:

a) a plotting object like point, line, or other shape

Step-by-step explanation:

A geom in the ggplot2 system is "a plotting object like point, line, or other shape."

A Geom is used in formulating different layouts, shapes, or forms of a ggplot2 such as bar charts, scatterplots, and line diagrams.

For example some different types of Geom can be represented as geom_bar(), geom_point(), geom_line() etc.

User Bruno Matuk
by
3.4k points