Cargar las librerías necesarias para la manipulación y análisis de datos: library()
Leer el archivo de datos: read_excel()
¿Cuántos nidos tenemos?: count()
## # A tibble: 1 x 1
## n
## <int>
## 1 1281
flextable()
n |
1281 |
group_by()
playa | n |
Calheta | 661 |
Ervatao | 288 |
Ponta Cosme | 183 |
Porto Ferreiro | 149 |
summarise()
## # A tibble: 1 x 1
## `mean(LCC)`
## <dbl>
## 1 81.8
summarise()
## # A tibble: 1 x 2
## `mean(ACC)` `mean(peso)`
## <dbl> <dbl>
## 1 77.0 60.7
mean(LCC) | mean(ACC) | mean(peso) |
81.84785 | 77.02802 | 60.73755 |
fontsize()
mean(LCC) | mean(ACC) |
81.84785 | 77.02802 |
group_by()
playa | mean(LCC) | mean(ACC) |
Calheta | 81.95976 | 77.07020 |
Ervatao | 81.82153 | 77.06701 |
Ponta Cosme | 81.61858 | 76.91366 |
Porto Ferreiro | 81.68389 | 76.90604 |
group_by()
Año | mean(LCC) | mean(ACC) |
1999 | 81.69112 | 76.92196 |
2000 | 81.78685 | 77.01972 |
2001 | 81.74805 | 77.15584 |
2002 | 81.93942 | 77.22548 |
2003 | 81.84845 | 76.68247 |
2004 | 82.07602 | 77.12262 |