Louise de Raad Posted October 25, 2017 Posted October 25, 2017 I have a number of tags that stopped working (at an unknown location) at some point, before the bird returned and the tag was retrieved. I have changed the Calibration.periods as follows: > Calibration.periods<-data.frame(+ calibration.start=as.POSIXct(NA), # start of the second calibration period+ calibration.stop=as.POSIXct(c("2013-08-05", NA)), # end of the first calibration period+ lon=-4.37, lat=58.38) > print(Calibration.periods)calibration.start calibration.stop lon lat1 <NA> 2013-08-05 -4.37 58.382 <NA> <NA> -4.37 58.38 and removed the model.ageing part from the make.calibration function: > Calibration<-make.calibration(Proc.data, Calibration.periods, model.ageing = FALSE)dusk 191 was excluded from the calibrationcalibration method used: parametric.slopelikelihood correction switched to TRUEdusk 189 was excluded from the calibrationcalibration method used: parametric.slopedusk 188 was excluded from the calibrationcalibration method used: parametric.slopeestimating correction function...There were 50 or more warnings (use warnings() to see the first 50) This resulted in loads of warnings (see below). Is this normal, do I just proceed? What do they mean? > warnings()Warning messages:1: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'2: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'3: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'4: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'5: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'6: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'7: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'8: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'9: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'10: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'11: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'12: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'13: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'14: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'15: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'16: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'17: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'18: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'19: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'20: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'21: In log(cur.slope$slope) : NaNs produced22: In log(All.slopes$Slopes$Slope) : NaNs produced23: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'24: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'25: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'26: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'27: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'28: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'29: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'30: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'31: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'32: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'33: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'34: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'35: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'36: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'37: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'38: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'39: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'40: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'41: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'42: In is.na(Last.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL'43: In log(cur.slope$slope) : NaNs produced44: In log(All.slopes$Slopes$Slope) : NaNs produced45: In log(all.slopes$Slopes$Slope) : NaNs produced46: In log(Slope) : NaNs produced47: In log(Slope) : NaNs produced48: In log(Slope) : NaNs produced49: In log(Slope) : NaNs produced50: In is.na(First.LogIrrad) :is.na() applied to non-(list or vector) of type 'NULL' Thanks Louise
Eldar Posted October 30, 2017 Posted October 30, 2017 Hi Louise, You should have deleted second NA, something like: Calibration.periods<-data.frame( calibration.start=NA, # start of the second calibration period calibration.stop=as.POSIXct("2013-08-05") # end of the first calibration period lon=-4.37, lat=58.38) Cheers, Eldar
Recommended Posts
Archived
This topic is now archived and is closed to further replies.