Primary exercises
Create tibble
- Create a tibble
exercise_group
for a group of individuals with names {Sonja, Steven, Ines, Robert, Tim} with their heights {164, 188, 164, 180, 170}, weights {56.0, 87.0, 54.0, 80.0, 58.5} and frequency of exercise {high, high, low, moderate, low}.
tibble subset
- Take the tibble
exercise_group
from the previous exercise and create a new tibbleexercise_group_sub
without theheight
andweight
variables by selection[
.
Extract variables as vectors
Given the tibble
favourite_colour
, how old were the subjects by the end of 2021?What is the mean height in
exercise_group
? Use mean function (see ?mean).
Read tibbles from file
Read
pulse.csv
data set into R and inspect its dimensions.Read
survey.csv
data set into R.
Inspect the dimensions.
Show the first 9 and the last 7 rows.
Calculate the mean
age
.Calculate the mean height in survey data.