Walmart Stock Data

Stock Prices

ggplot(data = WMT_df) +
  geom_point(
    mapping = aes(x = Date, y = Close),
    shape = 5,
    color = "purple",
    size = 2
  )

Trading Volume

ggplot(data = WMT_df) +
  geom_point(
      mapping = aes(x = Date, y = Volume),
position="jitter",
color="blue",
size=2
)

High and Low Prices

ggplot(data = WMT_df) +
  geom_bar(mapping = aes(x = factor(format(Date, "%Y"))),
           fill="pink"
  )