Skip to content

Commit

Permalink
Merge pull request #63 from ianalexmac/main
Browse files Browse the repository at this point in the history
Convert figures from OJS to R on prices page
  • Loading branch information
eldobbins authored Jul 16, 2024
2 parents 901357f + 038b53f commit 9214f61
Show file tree
Hide file tree
Showing 9 changed files with 2,703 additions and 246 deletions.
1 change: 1 addition & 0 deletions .Rprofile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
source("renv/activate.R")
19 changes: 11 additions & 8 deletions .github/workflows/quarto-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,18 @@ jobs:
- name: Set up R
uses: r-lib/actions/setup-r@v2

- name: Install packages
uses: r-lib/actions/setup-r-dependencies@v2
- name: Cache Renv packages
uses: actions/cache@v2
with:
packages: |
any::knitr
any::rmarkdown
any::tidyr
any::dplyr
any::readr
path: ~/R/Library
key: ${{ runner.os }}-renv-${{ hashFiles('**/renv.lock') }}
restore-keys: |
${{ runner.os }}-renv-
- name: Restore R package dependencies with renv
run: |
Rscript -e "install.packages('renv')"
Rscript -e "renv::restore()"
# set the file modification times to the time of the last commit for every file
# This did not work as expected, so deactivated. But left in case we want to come back to it.
Expand Down
2 changes: 1 addition & 1 deletion data/final/README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
data/final should be used as a directory for outgoing CSVs and public-facing data. Web products, such as visuals for the web book, should rely on database calls from data/working.
data/final should be used as a directory for outgoing CSVs and public-facing data.
2 changes: 1 addition & 1 deletion data/working/README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/data/working should be used as a directory for clean and organized data. This is primarily a location for active databases. CSVs should be limited or loaded into a database.
/data/working should be used as a directory for clean and organized data.
Loading

0 comments on commit 9214f61

Please sign in to comment.