2025-08-21
🐟 Postdoc: FHAST (UC Santa Cruz)
🔌 Consultation: EPRI Heat Exchanger ML Pipeline
📝 Freelance: Technical Editing & Writing Support
library(targets)
library(tarchetypes)
library(here)
tar_option_set(
packages = c("tidyverse")
)
tar_source()
list(
tar_target(
name = path,
command = here("path/to/data.csv"),
format = "file"
),
tar_target(
name = raw_data,
command = read_data(path)
),
tar_target(
name = analyzed_data,
command = analyze_data(raw_data)
),
tar_render(
name = manuscript,
path = here("path/to/manuscript.qmd")
)
)
Pipelines → teammates can rerun analyses without guesswork
Controlled environments → collaborators get the same results every time
Version control → workflows open for team and community to reuse
Documentation → future researchers can build on the work without me