library(tidyverse) library(tidymodels) library(probably) library(finetune) library(textrecipes) library(stopwords) library(wesanderson) library(kableExtra) library(clock) library(glue) library(janitor) library(vip) library(ggrepel) library(tictoc) library(doParallel) registerDoParallel(cores = 6) theme_set(theme_bw()) (cols % mutate( date = date_parse(date, format = "%d/%m/%Y"), length = parse_number(length_et), species_lumped = fct_lump_n(species, 20), across(ends_with("_val"), as.integer) ) # glimpse(strandings_df) Exploratory Some of the species labels contain a question mark or forward slash. This indicates uncertainty, so it might be fun to see if a machine ... Continue reading: Sea Monsters that Lost their Way http://dlvr.it/SDmCVR