You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ggplot(number_1[1:5,], aes(x = Song, y = Numberofdays_1, fill = Artist))+
geom_bar(stat = "Identity") +
ggtitle("Number of Days at #1 VS Song title") +
xlab("Song Title") +
ylab("Number of days at #1")+
geom_text(aes(label = Numberofdays_1), size = 2.5)
Dance Monkey from Tones and I stayed at the top for most number of days. (120 days).
ggplot(best_artist[1:5,], aes(x = Artist, y = Numberofsongs_1, fill = Artist)) + geom_bar(stat="Identity") +
geom_text(aes(label = Numberofsongs_1), size = 2.5)+
ggtitle("Artist VS The number of songs at #1")+
xlab("Artist")+
ylab("Number of songs at #1")
Drake came out be the best artist with the most number 1 songs in the database. No wonder why he is the best !!
ggplot(number_1_days[1:5,], aes(x = Artist, y = numberofdays_1, fill = Artist))+
geom_bar(stat = "Identity") +
ggtitle("Number of Days at #1 VS Artist")+
geom_text(aes(label = numberofdays_1), size = 2.5)+
xlab("Artist")+
ylab("Number of days at #1")
Post strikes again !! With stagering 174 days at the top of the industry.