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 3.5.1 ✔ tibble 3.2.1
✔ lubridate 1.9.4 ✔ tidyr 1.3.1
✔ purrr 1.0.2
── 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
library(GGally)
Registered S3 method overwritten by 'GGally':
method from
+.gg ggplot2
library(ggfortify)
library(ggplot2)
library(plotly)
Attaching package: 'plotly'
The following object is masked from 'package:ggplot2':
last_plot
The following object is masked from 'package:stats':
filter
The following object is masked from 'package:graphics':
layout
setwd("~/Documents/Data 110")
<- readr::read_csv("volleyball_ncaa_div1_2022_23.csv") volleyball_set
Rows: 334 Columns: 14
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
chr (3): Team, Conference, region
dbl (11): aces_per_set, assists_per_set, team_attacks_per_set, blocks_per_se...
ℹ 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.
volleyball_set
# A tibble: 334 × 14
Team Conference region aces_per_set assists_per_set team_attacks_per_set
<chr> <chr> <chr> <dbl> <dbl> <dbl>
1 Lafayette Patriot East 2.33 11.0 34.5
2 Delaware… MEAC South… 2.2 11.4 30.0
3 Yale Ivy League East 2.15 12.6 35.4
4 Coppin S… MEAC South… 2.15 10.6 32.5
5 Saint Lo… Atlantic … East 2.03 11.6 34.1
6 UTEP C-USA South 1.98 11.5 31.5
7 Samford SoCon South… 1.93 12.3 37.0
8 Lipscomb ASUN South… 1.91 12.9 35.6
9 Southern… MVC Midwe… 1.91 13.2 36.4
10 Howard MEAC South… 1.91 11.9 31.6
# ℹ 324 more rows
# ℹ 8 more variables: blocks_per_set <dbl>, digs_per_set <dbl>,
# hitting_pctg <dbl>, kills_per_set <dbl>, opp_hitting_pctg <dbl>, W <dbl>,
# L <dbl>, win_loss_pctg <dbl>