#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