막대 그래프를 그리는 동안이 오류가 발생하고 제거 할 수 없습니다. qplot과 ggplot을 모두 시도했지만 여전히 동일한 오류가 발생합니다.
다음은 내 코드입니다.
library(dplyr)
library(ggplot2)
#Investigate data further to build a machine learning model
data_country = data %>%
group_by(country) %>%
summarise(conversion_rate = mean(converted))
#Ist method
qplot(country, conversion_rate, data = data_country,geom = "bar", stat ="identity", fill = country)
#2nd method
ggplot(data_country)+aes(x=country,y = conversion_rate)+geom_bar()
오류:
stat_count() must not be used with a y aesthetic
data_country의 데이터 :
country conversion_rate
<fctr> <dbl>
1 China 0.001331558
2 Germany 0.062428188
3 UK 0.052612025
4 US 0.037800687
오류는 점선 차트가 아니라 막대 차트에서 발생합니다.