Import data

# excel file
albums <- read_excel("../00_data/myData.xlsx")
albums

State one question

Does the gender of the musician affect how popular an album becomes? # Plot data

ggplot(data = albums) +
 geom_point(mapping = aes(x = peak_billboard_position, y = artist_gender))

Interpret

There seems to be evidence that that there is a positive relationship between the musicians gender being male and and peak billboard position.