Facets; Time Trend ggplot()
November 5, 2024
facet_wrap(~ VAR)
facet_wrap()
.facet_wrap(~ VAR)
with nrow
nrow
determines the number of rows to use when laying out the facets.facet_wrap(~ VAR)
with ncol
ncol
determines the number of columns to use when laying out the facets.facet_wrap(~ VAR)
with scales
scales = "free_x"
allow for different scales of x-axisfacet_wrap(~ VAR)
with scales
scales = "free_y"
allow for different scales of y-axisfacet_wrap(~ VAR)
with scales
scales = "free"
allow for different scales of both x-axis and y-axisggplot()
ggplot()
nvda
data.frame includes NVIDIA’s stock information from 2019-01-02
to 2024-10-18
.ggplot()
ggplot()
geom_line()
geom_line()
draws a line by connecting data points in order of the variable on the x
-axis.ggplot()
ggplot()
geom_line()
and geom_smooth()
geom_smooth()
can also be useful for illustrating overall time trends.ggplot()
tech_october
data.frame includes stock information about AAPL, NVDA, META, and TSLA in October 2024.ggplot()
ggplot()
group
, color
, or linetype
aesthetic to tell ggplot explicitly about this firm-level structure.