当我尝试使用geom_point()或geom_bar()在ggplot中绘制x和y轴时,在每个轴上仅显示一个值。我正在使用以下数据集。
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"))
预先感谢 李