---
title: "Data I/O Lab, Part 1"
output: html_document
---

```{r, include = TRUE}
library(tidyverse)
library(readxl)
```

This lab uses different "slices" of the `ufo` dataset. You can use links or download them to your machine. Copy the code produced by the dropdown menu into the code chunk. As a reminder the steps are:

-  `>` File
-  `>` Import Dataset
-  `>` From Text (`readr`)
-  `>` paste the url
-  `>` click "Update" and "Import"

If this is review to you, explore the "Import Options" on the bottom left of the import dataset menu.

1. Read in the `https://sisbid.github.io/Data-Wrangling/data/ufo/ufo_slice_1.csv` dataset into the `ufo_slice_1` R object. What delimiter separates columns?

```{r}

```

2. Read in the `https://sisbid.github.io/Data-Wrangling/data/ufo/ufo_slice_2.tsv` dataset into the `ufo_slice_2` R object. What delimiter separates columns?

```{r}

```

3. Read in the `https://sisbid.github.io/Data-Wrangling/data/ufo/ufo_slice_3.csv` dataset into the `ufo_slice_3` R object. What delimiter separates columns? [hint: file extension is ambiguous]

```{r}

```

4. Read in the `https://sisbid.github.io/Data-Wrangling/data/ufo/ufo_slice_4.xlsx` dataset into the `ufo_slice_4` R object. 

```{r}

```
