Changes between Version 3 and Version 4 of Calculating winter and summer temperatures per year
- Timestamp:
- Jun 15, 2010 3:59:40 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Calculating winter and summer temperatures per year
v3 v4 7 7 8 8 * Pour avoir la température '''estivale''' pour chaque année par gridid : 9 {{{ 9 10 tapply(tmp$value[tmp$season=="summer"],list(tmp$gridid[tmp$season=="summer"],tmp$year[tmp$season=="summer"]),mean) 11 }}} 10 12 11 13 * Pour avoir la température '''hivernale''' pour chaque année par gridid : 14 {{{ 12 15 tapply(tmp$value[tmp$season=="winter"],list(tmp$gridid[tmp$season=="winter"],tmp$year[tmp$season=="winter"]),mean) 16 }}} 13 17 14 18 * Mais c'est plus compliqué :