Skip to content

Commit

Permalink
Selenium test related changes #354
Browse files Browse the repository at this point in the history
  • Loading branch information
pkiraly committed Nov 13, 2023
1 parent 9ade177 commit 1bc065a
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion scripts/classifications/classifications-type.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,20 @@ csv <- sprintf("%s/%s.csv", output_dir, prefix)
if (!file.exists(csv)) {
stop(paste("input file", csv, "does not exist!"))
}
df <- read_csv(csv)
df <- read_csv(
csv,
col_types=list(
id = col_double(),
field = col_character(),
location = col_character(),
scheme = col_character(),
abbreviation = col_character(),
abbreviation4solr = col_character(),
recordcount = col_double(),
instancecount = col_double(),
type = col_character()
)
)

types <- df %>%
select(scheme, abbreviation, type) %>%
Expand Down

0 comments on commit 1bc065a

Please sign in to comment.