README.md

MIT License Build Status Coverage Status

MarineSPEED

R code for downloading and working with the Marine SPEcies and Environmental Data (MarineSPEED.org) benchmark dataset.

Installation:

devtools::install_github("samuelbosch/marinespeed")

Example usage:

library(marinespeed)

## list of all species
species <- list_species()
View(species)

## count number of occurrences for all species 
get_occ_count <- function(speciesname, occ) {
  nrow(occ)
}
record_counts <- lapply_species(get_occ_count)
print(sum(unlist(record_counts)))

## plot first 2 folds for the first 10 species
plot_occurrences <- function(speciesname, data, k) {
   title <- paste0(speciesname, " (fold = ", k, ")")
   plot(data$occurrence_train[,c("longitude", "latitude")], pch=".", 
        col="blue", main = title)
   points(data$occurrence_test[,c("longitude", "latitude")], pch=".", 
          col="red")
}

# plot training (blue) and test (red) occurrences of the first 2 disc folds 
# for the first 10 species
species <- list_species()
lapply_kfold_species(plot_occurrences, species=species[1:10,],
                     fold_type = "disc", k = 1:2)


Try the marinespeed package in your browser

Any scripts or data that you put into this service are public.

marinespeed documentation built on May 1, 2019, 10:26 p.m.