Getting started:
Related tutorials:
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| #' Generates a KMZ file | |
| #' @author Ben Fasoli | |
| #' | |
| #' \code{make_kmz} generates a KMZ representation of surface observations. | |
| #' | |
| #' @param data to be plotted on Z axis | |
| #' @param time vector of times for data observations | |
| #' @param lat latitude, in dd.dddd | |
| #' @param lon longitude, in dd.dddd | |
| #' @param filepath character path to output file, ending in '.kmz' |
Getting started:
Related tutorials:
| stratified <- function(df, group, size, select = NULL, | |
| replace = FALSE, bothSets = FALSE) { | |
| if (is.null(select)) { | |
| df <- df | |
| } else { | |
| if (is.null(names(select))) stop("'select' must be a named list") | |
| if (!all(names(select) %in% names(df))) | |
| stop("Please verify your 'select' argument") | |
| temp <- sapply(names(select), | |
| function(x) df[[x]] %in% select[[x]]) |