Jason Wierzbowski - Exploring Eggs

A data set about eggs.

Jason Wierzbowski
08-11-2021

Reading in my CSV file

Homework #3

# A tibble: 6 × 6
  month     year large_half_dozen large_dozen extra_large_half_dozen
  <chr>    <dbl>            <dbl>       <dbl>                  <dbl>
1 January   2004             126         230                    132 
2 February  2004             128.        226.                   134.
3 March     2004             131         225                    137 
4 April     2004             131         225                    137 
5 May       2004             131         225                    137 
6 June      2004             134.        231.                   137 
# … with 1 more variable: extra_large_dozen <dbl>
# A tibble: 1 × 2
  `mean(extra_large_dozen)` `mean(extra_large_half_dozen)`
                      <dbl>                          <dbl>
1                      287.                           186.

Working on Regression of if certain months have an impact on the number of eggs produced

# A tibble: 20 × 6
# Groups:   month [2]
   month    year large_half_dozen large_dozen extra_large_half_dozen
   <chr>   <dbl>            <dbl>       <dbl>                  <dbl>
 1 January  2004             126         230                    132 
 2 July     2004             134.        234.                   137 
 3 January  2005             128.        234.                   136.
 4 July     2005             128.        234.                   136.
 5 January  2006             128.        234.                   136.
 6 July     2006             128.        234.                   136.
 7 January  2007             128.        234.                   136.
 8 July     2007             132         237                    139 
 9 January  2008             132         237                    139 
10 July     2008             174.        278.                   186.
11 January  2009             174.        278.                   186.
12 July     2009             174.        278.                   186.
13 January  2010             174.        272.                   186.
14 July     2010             174.        268                    186.
15 January  2011             174.        268.                   186.
16 July     2011             174.        270                    186.
17 January  2012             174.        268.                   186.
18 July     2012             173.        268.                   186.
19 January  2013             178         268.                   188.
20 July     2013             178         268.                   188.
# … with 1 more variable: extra_large_dozen <dbl>

This data set contains information on how many half dozens and dozens of eggs made to be sold in a given month of a given year.

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

Wierzbowski (2021, Aug. 11). DACSS 601 August 2021: Jason Wierzbowski - Exploring Eggs. Retrieved from https://mrolfe.github.io/DACSS601August2021/posts/2021-08-17-jason-wierzbowski-exploring-eggs/

BibTeX citation

@misc{wierzbowski2021jason,
  author = {Wierzbowski, Jason},
  title = {DACSS 601 August 2021: Jason Wierzbowski - Exploring Eggs},
  url = {https://mrolfe.github.io/DACSS601August2021/posts/2021-08-17-jason-wierzbowski-exploring-eggs/},
  year = {2021}
}