/home/data_scientist/work/
is the parent directory on the computer.climate_analysis/
is the main project folder.src/
contains R scripts, including main.R
and a helpers/
subdirectory.data/
has raw/
and processed/
subdirectories for data at different stages.results/
contains figures/
and reports/
for output./home/data_scientist/work/ climate_analysis/ src/ main.R helpers/ data_cleaner.R data/ raw/ temperature.csv precipitation.csv processed/ clean_data.rds results/ figures/ temperature_trend.png reports/ climate_report.pdf
In the main.R
script, what's the relative path to read temperature.csv
?
What's the absolute path to save climate_report.pdf
?
In data_cleaner.R
, what's the relative path to save clean_data.rds
?