Happens with thw GitHub-Organization CU-F23-MDSSB-MET-03-VisCommDataStory
We only use only a few of the various git
commands.1
You git clone
your private repositories to your computer.
git add
, git commit
, git push
your work, git pull
other’s work
Definition: Systems of rules which can process instructions to be executed by the computer.
Our two programming languages are:
In R:
install.packages("tidyverse")
(called once to install) andlibrary(tidyverse)
(in the code before using its commands)IDEs provide terminals, a source code editor, an object browser (the environment), output and help view, tools for rendering and version control, and more to help in the workflow. Our IDEs are:
VS Code
Weaves together text and code to produces good-looking formatted scientific or technical output.
A YAML header and Markdown text with code chunks is rendered to a document in several formats.
Notebooks are a similar concept: text and executable code mixed together in a browser tab. Notebooks (e.g. .ipynb-files) Can be rendered by quarto. Popular in the python world.
Main difference between notebook and quarto-output: Code in the notebook can be executed. The page is not static.
Header: YAML with title, author, document-wide specifications
Body:
**bold**
for bold, and other for headers, lists, and so on. Good idea: Occassionally spend a few minutes to look up and learn some formatting rules for markdown.```{r}
#| label: NAME
to cross-reference to it in the text#| echo: false
to not show (or show if true
) code in output#| warning: false
to not show (or show if true
) the the warnings you would see in the Console```