Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ library(tidyverse)

## Update ##
# The year of the new NSU extract we want
year <- "2324"
year <- "2526"

nsu_dir <- path("/conf/hscdiip/SLF_Extracts/NSU/")

Expand All @@ -45,7 +45,9 @@ episode_file <- slfhelper::read_slf_episode(year, col_select = "anon_chi") %>%
# Get CHI version for sending to the CHILI team.
# For saving this on disk we want the anon-chi version, save this after sending
# to the CHILI team.
slfhelper::get_chi()
slfhelper::get_chi() %>%
# Remove any duplicate CHIs
distinct()

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should add dplyr:: to prevent the code from breaking.


# Save a parquet file
episode_file %>%
Expand Down
Loading