We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
and add gantt charts:
## automated way to split on long time gaps sp_id <- sepIdGaps(loc1$sp_id, ptr$gmt) ## Gantt chart ntrips <- nlevels(factor(ptr$sp_id)) plot(range(ptr$gmt), c(1, ntrips), type = "n") spl <- split(ptr, ptr$sp_id) srt <- order(unlist(lapply(spl, function(x) min(x$gmt))), decreasing = TRUE) spl <- spl[srt] lapply(seq_along(spl), function(i) lines(data.frame(range(spl[[i]]$gmt), c(i, i))))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
and add gantt charts:
The text was updated successfully, but these errors were encountered: