Skip to content

Commit

Permalink
change project_folder to your_project_folder (#346)
Browse files Browse the repository at this point in the history
- closes #342
  • Loading branch information
cjyetman authored Dec 12, 2024
1 parent 338aa2b commit ae376d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions vignettes/cookbook_advanced_use_cases.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ In terms of implementation, suppose we want to run the analysis at the aggregate
Assuming you have followed the naming convention described here, your project folder should look something like this:

```
project_folder
your_project_folder
├── config.yml
├── input
│ ├── ABCD.xlsx
Expand Down Expand Up @@ -85,7 +85,7 @@ The implementation of this use case is relatively straight-forward:
Assuming you have followed the naming convention described here, your project folder should look something like this:

```
project_folder
your_project_folder
├── config.yml
├── input
│ ├── ABCD.xlsx
Expand Down Expand Up @@ -136,7 +136,7 @@ The following steps should be followed to implement this use case:
Assuming you have followed the naming convention described here, your project folder should look something like this:

```
project_folder
your_project_folder
├── config.yml
├── input
│ ├── ABCD.xlsx
Expand Down
4 changes: 2 additions & 2 deletions vignettes/cookbook_preparatory_steps.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ The `config.yml` file then points to an input directory and to four output direc
An example of how the project folder could be structured:

```
project_folder
your_project_folder
├── config.yml
├── input
│ ├── ABCD.xlsx
Expand All @@ -246,7 +246,7 @@ You can use the following code to initialise a project folder structure:

``` r
library(pacta.multi.loanbook)
initialise_default_project(path = "path/to/project_folder")
initialise_default_project(path = "path/to/your_project_folder")
```

This will create a minimal project folder structure similar to the one shown above.
Expand Down

0 comments on commit ae376d5

Please sign in to comment.