Skip to content

Commit

Permalink
Exclude reworked specimens
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasHohmann committed Mar 1, 2024
1 parent 11edb1c commit d3b803e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/analysis.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ cat("Running analysis, please wait...\n")
cat("Loading data\n")
messinian_db <- read.csv(file = "data/messinianDB.csv")

#### Clean data ####
remove_occ = grepl("Considered reworked", messinian_db$Notes, useBytes = TRUE) | grepl("Collected from deposits known as \"Livelli ad Aturia", messinian_db$Notes, useBytes = TRUE)
messinian_db = messinian_db[!remove_occ,]

#### Set seed ####
set.seed(1)

Expand Down

0 comments on commit d3b803e

Please sign in to comment.