13 Setup: Vector Basics
Purpose: Vectors are the most important object we’ll work with when doing data science. To that end, let’s learn some basics about vectors.
Reading: (None, this is the reading)
## ── 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.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
Remember the c()
function? Let’s use it to work with vectors!
13.0.1 q1 Create a vector
Create a vector with the numbers 1, 2, 3
below.
## [1] 1 2 3
Use the following tests to check your work:
## [1] TRUE
## [1] TRUE
## [1] "Nice!"