#Sample Solution
---
title: "Quantiles"
output: html_notebook
---
```{r}
# load song data
load("songs.Rda")
```
```{r}
# define percentile and answer here:
percentile <- quantile(songs,0.32)
answer <- "below"
```
```{r}
# ignore the code below here:
tryCatch(print(paste("Your percentile is",percentile)), error=function(e) {print("You haven't defined percentile")})
```
No comments:
Post a Comment