#Sample Solution
---
title: "Data Cleaning in R"
output: html_notebook
---
```{r message=FALSE, warning=FALSE}
# load libraries
library(dplyr)
```
```{r}
# load students data frame
load("students.Rda")
```
```{r}
# view head of students
head(students)
```
```{r}
# update age column
students <- students %>% mutate(age = as.numeric(age))
students
```
No comments:
Post a Comment