@@ -76,15 +76,15 @@ show_tree(sas_dir)
7676
7777## Settings to correct paths
7878
79- Many of fastreg's functions depend on the correct locations to the
80- original SAS files and the eventual Parquet files. This applies to both
81- the conversion and writing functions, as well as to the reading
82- functions. Through ` options() ` you can set these paths in our two
79+ Many of fastreg's functions depend on the locations of the
80+ original SAS files and the eventual Parquet files including
81+ the conversion, writing, and reading
82+ functions. Through ` options() ` you can set these paths in two
8383settings: ` fastreg.project_rawdata_dir ` and
8484` fastreg.project_workdata_dir ` . You can set these ` options() ` at the top
8585of your R script or Quarto document, in your R Project's ` .Rprofile ` , or
86- in your user-level ` .Rprofile ` . To add to the file, at the top, write
87- out (using a temporary directory here for these examples):
86+ in your user-level ` .Rprofile ` . To add to the file, at the top of an R script , write
87+ (using a temporary directory here for these examples):
8888
8989``` {r options}
9090options(
@@ -94,20 +94,22 @@ options(
9494)
9595```
9696
97- Or, if you want to set those exact same options for the R Project's
98- ` .Rprofile ` , you can run :
97+ If you want to set those exact same options in the R Project's
98+ ` .Rprofile ` , run the following line in your Console to open up the ` .Rprofile ` file for the project :
9999
100100``` {r options-project-profile}
101101#| filename: "Console"
102102#| eval: false
103103usethis::edit_r_profile("project")
104104```
105105
106- Which opens up the ` .Rprofile ` file for the project. You can then add
107- the same ` options() ` to that file and save it. The next time you open
108- the project, those options will be set. Or, to set it for all of your R
109- projects and sessions, you can set it globally in your user-level
110- ` .Rprofile ` :
106+ You can then add
107+ the same ` options() ` as shown in the R script example above to that file and save it. The next time you open
108+ the project, those options will be set.
109+
110+ If you want to set these options for all of your R
111+ projects and sessions, you can add them globally in your user-level
112+ ` .Rprofile ` . To open the ` .Rprofile ` , run:
111113
112114``` {r options-user-profile}
113115#| filename: "Console"
0 commit comments