Statistic = c(68, 85, 74, 88, 63, 78, 90, 80, 58, 63)
Math = c(85, 91, 74, 100, 82, 84, 78, 100, 51, 70)
colors <- c("#FDAE61", # Orange
            "#D9EF8B") # Light green

plot(Statistic,Math,
     main = "Statistics vs Math Scores",
     xlab = "Statistics Scores",
     ylab = "Math Scores",
     pch = 19,          # 點的樣式
     col = "purple",    # 點的顏色
     cex = 1.5)         # 點的大小

```