Commit 958f54c6 authored by Lambert Patrick's avatar Lambert Patrick
Browse files

copy of tempearture accotding to latitude

Showing with 21 additions and 1 deletion
+21 -1
# see BruchPrg for upload of data # see BruchPrg for upload of data
# ======================================================================
# temp en fonction de la latitude
# ====================================================================
library(dplyr)
extractTemp<-as.data.frame(tempData %>%
filter(Year>1901 & Year <= 1910) %>%
group_by(NOM,Lat)%>%
summarize(meanSpring=mean(Spring))
%>% arrange (Lat)
)
plot(extractTemp$Lat, extractTemp$meanSpring, pch=20)
abline(v=49.25) # vire
abline(v=53.75) # elbe
abline(h=11)
abline(h=12.5)
# ======================================================================== # ========================================================================
# effect tempertaure sur la reproduction # effect temperature sur la reproduction
# ======================================================================== # ========================================================================
thermalBevertonHolt = function (stock, temperature, juvenileTolerance) { thermalBevertonHolt = function (stock, temperature, juvenileTolerance) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment