Skip to content

Commit

Permalink
Tweak the model bit
Browse files Browse the repository at this point in the history
  • Loading branch information
RohanAlexander committed Feb 7, 2024
1 parent a0034f5 commit 4740c30
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ To use this folder, click the green "Code" button", then "Download ZIP". Move th
The repo is structured as:

- `data/raw_data` contains the raw data as obtained from X.
- `data/cleaned_data` contains the cleaned dataset that was constructed.
- `data/analysis_data` contains the cleaned dataset that was constructed.
- `model` contains fitted models.
- `other` contains relevant literature, details about LLM chat interactions, and sketches.
- `outputs/paper` contains the files used to generate the paper, including the Quarto document and reference bibliography file, as well as the PDF of the paper.
- `paper` contains the files used to generate the paper, including the Quarto document and reference bibliography file, as well as the PDF of the paper.
- `scripts` contains the R scripts used to simulate, download and clean data.


Expand Down
File renamed without changes.
Binary file removed outputs/paper/paper.pdf
Binary file not shown.
File renamed without changes.
File renamed without changes.
Binary file added paper/paper.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion outputs/paper/paper.qmd → paper/paper.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Our results are summarized in @tbl-modelresults.
library(rstanarm)
first_model <-
readRDS(file = here::here("outputs/models/first_model.rds"))
readRDS(file = here::here("models/first_model.rds"))
```

```{r}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion scripts/04-model.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ first_model <-
#### Save model ####
saveRDS(
first_model,
file = "outputs/models/first_model.rds"
file = "models/first_model.rds"
)


0 comments on commit 4740c30

Please sign in to comment.