Quotes help make search much faster. Example: "Practice Makes Perfect"

Thursday, September 5, 2019

Codecademy Aggregates in R Combining Grouping with Mutate 6/7


#Sample Solution
---
title: "Aggregates in R"
output: html_notebook
---

```{r message = FALSE}
# load packages
library(readr)
library(dplyr)
```

```{r message = FALSE}
# load orders data
orders <- read_csv("orders.csv")

# inspect orders
head(orders)
```

```{r}
# define diff_from_mean here:
diff_from_mean <- orders %>% group_by(shoe_type) %>% mutate(diff_from_shoe_type_mean=price-mean(price,na.rm=TRUE))
diff_from_mean
```

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts