Loading a data set

Homework assignment to load data in to a R Markdown file.

Karl Tacheron
2021-08-11

Load the tidyverse library:

Import a sample data set from the working directory and assign it to variable poultry:

poultry<-read_csv('data/poultry_tidy.csv') 

Fixed direction of the assignment - Meredith

Show the first few values:

head(poultry)
# A tibble: 6 × 4
  Product  Year Month    Price_Dollar
  <chr>   <dbl> <chr>           <dbl>
1 Whole    2013 January          2.38
2 Whole    2013 February         2.38
3 Whole    2013 March            2.38
4 Whole    2013 April            2.38
5 Whole    2013 May              2.38
6 Whole    2013 June             2.38

Reuse

Text and figures are licensed under Creative Commons Attribution CC BY-NC 4.0. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".

Citation

For attribution, please cite this work as

Tacheron (2021, Aug. 11). DACSS 601 August 2021: Loading a data set. Retrieved from https://mrolfe.github.io/DACSS601August2021/posts/2021-08-11-loading-data/

BibTeX citation

@misc{tacheron2021loading,
  author = {Tacheron, Karl},
  title = {DACSS 601 August 2021: Loading a data set},
  url = {https://mrolfe.github.io/DACSS601August2021/posts/2021-08-11-loading-data/},
  year = {2021}
}