x和y轴不显示值ggplot

时间:2018-11-19 20:29:37

标签: r ggplot2

当我尝试使用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"))

预先感谢 李

0 个答案:

没有答案