Walmart Stock Data
ggplot(data = WMT_df) +
geom_point(
mapping = aes(x = Date, y = Close),
shape = 5,
color = "purple",
size = 2
)
ggplot(data = WMT_df) +
geom_point(
mapping = aes(x = Date, y = Volume),
position="jitter",
color="blue",
size=2
)
ggplot(data = WMT_df) +
geom_bar(mapping = aes(x = factor(format(Date, "%Y"))),
fill="pink"
)