library(tidyverse)── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr 1.1.4 ✔ readr 2.1.5
✔ forcats 1.0.0 ✔ stringr 1.5.1
✔ ggplot2 4.0.0 ✔ tibble 3.2.1
✔ lubridate 1.9.4 ✔ tidyr 1.3.1
✔ purrr 1.0.4
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag() masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
Chessround <- read_csv("https://raw.githubusercontent.com/Mayneman000/DATA607Assignment/refs/heads/main/PreparedChessinfo.csv")New names:
Rows: 64 Columns: 5
── Column specification
──────────────────────────────────────────────────────── Delimiter: "," chr
(2): Name, State dbl (3): ...1, ID, Total Points
ℹ Use `spec()` to retrieve the full column specification for this data. ℹ
Specify the column types or set `show_col_types = FALSE` to quiet this message.
• `` -> `...1`
print(Chessround)# A tibble: 64 × 5
...1 ID Name State `Total Points`
<dbl> <dbl> <chr> <chr> <dbl>
1 1 1 GARY HUA ON 6
2 2 2 DAKSHESH DARURI MI 6
3 3 3 ADITYA BAJAJ MI 6
4 4 4 PATRICK H SCHILLING MI 5.5
5 5 5 HANSHI ZUO MI 5.5
6 6 6 HANSEN SONG OH 5
7 7 7 GARY DEE SWATHELL MI 5
8 8 8 EZEKIEL HOUGHTON MI 5
9 9 9 STEFANO LEE ON 5
10 10 10 ANVIT RAO MI 5
# ℹ 54 more rows