You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.
I think you accidentally swapped the humidex and winter temps when you defined the D_CARI table:
D_CARI <- tribble(
~NAME, ~humidex_avg, ~wintertemp,
"Bonaire, Caribbean Netherlands", 27, calcHumx(29,76),
"Sint Eustatius, Caribbean Netherlands", 28, calcHumx(28,77),
"Saba, Caribbean Netherlands",30, calcHumx(30,76)
)
Fun post applying Maele Salmon's analysis to the Netherlands!
http://rmhogervorst.nl/cleancode/blog/2017/11/20/xkcd-the-netherlands-weather.html
I think you accidentally swapped the humidex and winter temps when you defined the D_CARI table:
D_CARI <- tribble(
~NAME, ~humidex_avg, ~wintertemp,
"Bonaire, Caribbean Netherlands", 27, calcHumx(29,76),
"Sint Eustatius, Caribbean Netherlands", 28, calcHumx(28,77),
"Saba, Caribbean Netherlands",30, calcHumx(30,76)
)
should be:
D_CARI <- tribble(
~NAME, ~humidex_avg, ~wintertemp,
"Bonaire, Caribbean Netherlands", calcHumx(29,76), 27,
"Sint Eustatius, Caribbean Netherlands", calcHumx(28,77), 28,
"Saba, Caribbean Netherlands", calcHumx(30,76) 30
)
The text was updated successfully, but these errors were encountered: