jesse-ross / ds-pipelines-targets-1

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

Get started with USGS Data Science pipelines #1

Closed github-learning-lab[bot] closed 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 your course contact know 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 targets and its companion package, tarchetypes.

install.packages(c("targets", "tarchetypes"))

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

install.packages(c("tidyverse", "sbtools", "whisker", "dataRetrieval"))

When all packages are installed, comment with the message that appears after you run packageVersion("targets").


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

jesse-ross commented 3 years ago

[1] ‘0.7.0’

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

Thanks, @jesse-ross! Now, verify that the number you just commented is greater than or equal to 0.3.1.

If not, try re-installing:

install.packages(c("targets", "tarchetypes"))
library(targets)

If you can't get it to work, try contacting your designated course instructor!


When you have the correct version of the package installed, close this issue and I will get the the next one set up for you