Import data

# csv file
data <- read_csv("../00_data/myData.csv")
data

State one question

Does higher paseparnk, have more games played

Plot data

data %>%
    ggplot() +
    geom_point(aes(x = PASERANK, y = GAMES))

Interpret

There is evidance that being ranked higher is PASERANK leads to more played. But there are a couple outliers.