#Sample Solution
---
title: "Joining Tables 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")
customers <- read_csv("customers.csv")
products <- read_csv("products.csv")
```
```{r}
# inspect orders, customers and products
head(orders)
head(customers)
head(products)
```
```{r}
# define order_3_description here:
order_3_description <- 'thing-a-ma-jig'
# define order_5_phone_number here:
order_5_phone_number <- '112-358-1321'
```
No comments:
Post a Comment