Skip to content

Commit

Permalink
site deploy
Browse files Browse the repository at this point in the history
Auto-generated via `{sandpaper}`
Source  : 5fc8d18
Branch  : md-outputs
Author  : GitHub Actions <[email protected]>
Time    : 2024-12-26 01:05:10 +0000
Message : markdown source builds

Auto-generated via `{sandpaper}`
Source  : c46f85e
Branch  : main
Author  : joelnitta <[email protected]>
Time    : 2024-12-26 01:02:22 +0000
Message : Add section in functions.Rmd showing how to use fun in workflow
  • Loading branch information
actions-user committed Dec 26, 2024
1 parent 3925c78 commit 3b0d966
Show file tree
Hide file tree
Showing 45 changed files with 1,632 additions and 836 deletions.
8 changes: 4 additions & 4 deletions 404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions CODE_OF_CONDUCT.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions LICENSE.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

497 changes: 346 additions & 151 deletions aio.html

Large diffs are not rendered by default.

335 changes: 235 additions & 100 deletions basic-targets.html

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions branch.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions cache.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions files.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions files/plans/plan_0.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
options(tidyverse.quiet = TRUE)
library(targets)
library(tidyverse)
library(palmerpenguins)

list(
tar_target(penguins_csv_file, path_to_file("penguins_raw.csv")),
tar_target(
penguins_data_raw,
read_csv(penguins_csv_file, show_col_types = FALSE)
),
tar_target(
penguins_data,
penguins_data_raw |>
select(
species = Species,
bill_length_mm = `Culmen Length (mm)`,
bill_depth_mm = `Culmen Depth (mm)`
) |>
drop_na()
)
)
Loading

0 comments on commit 3b0d966

Please sign in to comment.