Skip to content
Snippets Groups Projects
Commit 99e81ee2 authored by pfoo's avatar pfoo
Browse files

Editted one sentence about exercise on sapply()

parent 374b246c
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ The `unique()` function in R can be used to find all unique values in a specific
```
By using the `sapply()` function, try to find the unique values in each column in the `menu` table.
By using the `sapply()` function, find the unique values in each column in the `menu` table.
```{r}
# Write your code below
......
......@@ -123,7 +123,7 @@ The `unique()` function in R can be used to find all unique values in a specific
unique(menu$Price)
```
By using the `sapply()` function, try to find the unique values in each column in the `menu` table.
By using the `sapply()` function, find the unique values in each column in the `menu` table.
```{r}
# Write your code below
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment