Jessica, > I am working with a data file which is the record of precipitation > measurement normaly done every 10 minutes. I would like to check if there > are missing times in my data file. > > Is there a function existing able to check for that in R ?
I'd use max(diff(time))==min(diff(time)). HTH, Rogerio ______________________________________________ [email protected] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
