Goodkatmonica / ds-pipelines-1

https://lab.github.com/USGS-R/intro-to-pipelines
0 stars 0 forks source link

Get started with USGS Data Science pipelines #1

Open github-learning-lab[bot] opened 3 years ago

github-learning-lab[bot] commented 3 years ago

Data analyses are often complex. Data pipelines are ways of managing that complexity. Our data pipelines have two foundational pieces:

:keyboard: Activity: Assign yourself to this issue to get started.

:bulb: Tip: Throughout this course, I, the Learning Lab Bot, will reply and direct you to the next step each time you complete an activity. But sometimes I'm too fast when I :hourglass_flowing_sand: give you a reply, and occasionally you'll need to refresh the current GitHub page to see it. Please be patient, and let my humans know (jread-usgs or aappling-usgs) if I seem to have become completely stuck.


I'll sit patiently until you've assigned yourself to this one.

github-learning-lab[bot] commented 3 years ago

:keyboard: Installing tools

To complete this section, you'll need some R packages. You will need to install remake, scipiper, and drake.

drake is available through CRAN, but remake and scipiper both require installation from github.

scipiper depends on remake, so install remake and its dependencies first:

install.packages(c("R6", "yaml", "digest", "crayon", "optparse", "storr", "remotes"))
remotes::install_github('richfitz/remake')

While you are at it, please install a few other packages that you'll use along the way:

install.packages(c("dplyr", "readr", "stringr", "sbtools", "whisker", "dataRetrieval", "ggplot2", "purrr"))

Next, install scipiper

remotes::install_github('USGS-R/scipiper')

Also install drake

install.packages('drake')

When all three pipeline packages are installed, comment with the message that appears after you run library(scipiper).


I'll respond when I detect you've commented to this issue.