#which game is the most popular (highest rating) and does it has to do with the average complexities of the game?
library(ggplot2)
average_complexities <- board_game$average_complexity
rating_complexities_graph<- ggplot(data=board_game, Mapping = aes(x = board_game$average_complexity, y = board_game$average_rating) + geom_point())
print(rating_complexities_graph)
Hey everyone, I am quite new to R and tried to do this project of analyzing board_game. I was really curious which part did I make a mistake that causes a completely blank graph. Any help will be appreciated!