Import data

# excel file
NCAA <- read_excel("../01_module4/data/myData.xlsx")
NCAA

State one question

The higher performance against Komputer expectations, the higher winning percentage.

Plot data

ggplot(data = NCAA) +
    geom_point(mapping = aes(x = PAKE, y = WINPERCENT))

Interpret

According to the data, there appears to be a positive correlation between performance against Komputer expectations and winning percentage.