LucasMella / MineriaDeDatosDS2022

0 stars 0 forks source link

Revisión taller 3 #2

Open frzambra opened 1 year ago

frzambra commented 1 year ago

En

https://github.com/LucasMella/MineriaDeDatosDS2022/blob/main/scripts/Taller%203.R#L59:L61

No se filtraron los meses de mayo a julio, sino que de mayo a agosto. Por eso es mejor hacer el filtro utilizando la fecha y no sólo el mes.

Observa el resultado de lo siguiente

api_agromet |> 
  mutate(fecha_hora = as.Date(api_agromet$fecha_hora), month = month(fecha_hora)) |> 
  filter(month >= 05 & month <= 08) |> summarise(range(fecha_hora))

# A tibble: 2 × 1
  `range(fecha_hora)`
  <date>             
1 2021-05-01         
2 2021-08-31   

En https://github.com/LucasMella/MineriaDeDatosDS2022/blob/main/scripts/Taller%203.R%L151:L152

El filtro no está bien- Una alternativa sería

left_join(pivot_longer(med_agromet,2:4), pivot_longer(prom_agromet,2:4),by = 'station_id') |> 
  filter(value.y > value.x)