#Sample Solution
---
title: "Joining Tables in R"
output: html_notebook
---
```{r message = FALSE}
# load packages
library(readr)
library(dplyr)
```
```{r message = FALSE}
# load store_a and store_b data
store_a <- read_csv("store_a.csv")
store_b <- read_csv("store_b.csv")
```
```{r}
# inspect store_a and store_b
head(store_a)
head(store_b)
```
```{r}
# define store_a_b_full here:
store_a_b_full <- store_a %>% full_join(store_b)
store_a_b_full
```
No comments:
Post a Comment