Welcome to The Carpentries Etherpad! This pad is synchronized as you type so everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents. Use of this service is restricted to members of The Carpentries community; this is not for general-purpose use (for that, try https://etherpad.wikimedia.org). Users are expected to follow our code of conduct: https://docs.carpentries.org/topic_folders/policies/code-of-conduct.html All content is publicly available under the Creative Commons Attribution License: https://creativecommons.org/licenses/by/4.0/ ---------------------------------------------------------------------------- *UniX Shell *Download data * Download shell-lesson-data.zip from https://swcarpentry.github.io/shell-novice/data/shell-lesson-data.zip and move the file to your Desktop. Note that this download link is available via workshop website as well (https://u-bds.github.io/2023-12-14-uab/) * Unzip/extract the file. Let your instructor know if you need help with this step. You should end up with a new folder called shell-lesson-data on your Desktop. *Mac users only • Open terminal app and run command “echo $SHELL” to check if your shell is bash • If not bash, type and enter “chsh -s /bin/bash”. You may need to enter password to complete the process. cd ~/Desktop/shell-lesson-data/exercise-data/alkanes ~/.bash_history for history of commands *VERSION CONTROL WITH GIT https://u-bds.github.io/2023-12-14-uab/#git-1 You will need an account at github.com for parts of the Git lesson. Basic GitHub accounts are free. We encourage you to create a GitHub account if you don't have one already NOTE: We did create a public repo on github for the workshop. But please note that it is possible to create a private repo so you can develop without fear of your work being visible before you are ready for it to be publicised * *R for Reproducible Scientific Analysis Please make sure you have followed the instructions at: https://u-bds.github.io/2023-12-14-uab/#r-1 Download https://raw.githubusercontent.com/swcarpentry/r-novice-gapminder/main/episodes/data/gapminder_data.csv *install.packages('knitr', dependencies = TRUE) Just as a note, there was an error that occurred when trying to query the gapminder matrix to obtain all rows where the life expectancy column was greater than 80. The solution for this is to move the conditional statement to before the comma, like below: *gapminder[gapminder$lifeExp > 80,] *