बार ग्राफ की साजिश रचते समय मुझे यह त्रुटि हो रही है और मैं इससे छुटकारा नहीं पा रहा हूं, मैंने 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
त्रुटि बार चार्ट में आ रही है न कि डॉटेड चार्ट में।