[1] "R version 4.4.1 (2024-06-14 ucrt)"
Download Python. During installation, ensure the option Add Python to PATH is checked
Install Python Extension in VS Code
Set Python Interpreter in VS Code (e.g., the version installed in step 1)
Ctrl+Shift+P and search for “Python: Select Interpreter”).Install python libraries, pip install <library> from terminal
Which version of Git have you installed?
Did you register an account in GitHub?
Did you authenticate your account and configure your local Git for GitHub Desktop?
git statusgit addgit commit -m 'comment'git pushgit pull (if needed)“A space in a file name is a space in your soul.”
Until you are a Git(Hub) expert…
C:\Users\username\projects\...data/code/...\ but can understand forward slashes /. Reason is historic related to forward slash already being taken in MS-DOS for command line options./ implies a subfolder or subdirectory.. says go “up” one level into an outer directory. e.g., ../data would say to go out of the current folder into it’s outer directory and then back to the other data subdirectory.gitignore?.Rproj.user/, .Rhistory, .RData.vscode/, .DS_Storedata/output/*.log*.tmpWe need to be careful with version control when working with large datasets:
.gitignore.ipynb files?
jupytext to do this automatically)homework1
|
| README.md
| .gitignore
|
|---data (not tracked in git or pushed to github)
| | input (symbolic links)
| | output (analytic data sets)
|
|---submission1
| |---data-code
| |---analysis
| |---results
| | mccarthy-i-hwk1-1.pdf
|
|---submission2
| |---data-code
| |---analysis
| |---results
| | mccarthy-i-hwk1-2.pdf
|
In macOS/Linux:
Windows:
/D creates a directory (e.g., entire folder instead of a file)