When I try to plot the x an y axis in ggplot using geom_point() or geom_bar() I only get one value displayed on each axis. I am using the following data set.
startup_data <- read.csv('crunchbase_monthly_export.csv', header = T,
stringsAsFactors = F)
library(tidyverse)
ggplot(startup_data, aes(factor(funding_rounds))) + geom_bar()
ggplot(ft2) +
geom_point(mapping = aes("funding_rounds", "funding_total_usd"))
Thanks in advance Lee