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

Thursday, September 5, 2019

Codecademy Joining Tables in R Mismatched Joins 7/11


#Sample Solution
---
title: "Joining Tables in R"
output: html_notebook
---

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

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

```{r}
# inspect orders and products here:
head(orders)
head(products)
```

```{r}
# define orders_products here:
orders_products <- orders %>% inner_join(products)
orders_products #order_id 3 is missing
```

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts