153k views
1 vote
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 Lexa
by
4.1k points

1 Answer

4 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 Razze
by
3.7k points