Skip to content

Commit

Permalink
simplify yml for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
andybeet committed Jan 2, 2025
1 parent e55ddce commit b27d4dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pullLazyData.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

- name: Install packages
run: |
install.packages(c("remotes","dplyr", "httr", "here", "usethis","kableExtra","rmarkdown","rlang"))
install.packages(c("remotes", "here","rmarkdown"))
remotes::install_github("NOAA-EDAB/buoydata")
shell: Rscript {0}

Expand All @@ -66,7 +66,7 @@ jobs:
run: |
options(timeout = 60 * 60 * 6)
source(here::here("data-raw/get_buoy_stations.R"))
newData <- get_buoy_stations(exportFile=F,isRunLocal = F)
newData <- get_buoyDataWorld(exportFile=F,isRunLocal = F,buoyIDs = c("42056","45212","46072"))
saveRDS(newData,here::here("data-raw/newData.rds"))
shell: Rscript {0}

Expand Down
5 changes: 3 additions & 2 deletions data-raw/sendAsEmail.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ params$sameDim

### Same data

Filtering for `params$mainVars` are data sets the same
Filtering for `r params$mainVars`.
Are data sets the same?

```{r samemain, echo = F}
params$sameMain
```


### Differences
### Differences in values of variables
```{r diffs, echo = F}
kableExtra::kable(params$df)
```
Expand Down

0 comments on commit b27d4dd

Please sign in to comment.