-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnotes.txt
More file actions
34 lines (27 loc) · 815 Bytes
/
notes.txt
File metadata and controls
34 lines (27 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
To update to latest version of miniconda
install_miniconda(path = miniconda_path(), update = TRUE, force = TRUE)
To install packages:
library(reticulate)
py_install("pandas")
Update 10/15/2021 re: installing python packages
CF: I need use pip install at command line to get packages, not py_install()
TODO
Set up GitHub actions?
Docker container?
Possible chapters
- Installing and Updating Packages
- Data Structures
- Data Wrangling (subset, merge, reshape)
- Basic Graphics
- Loops and Apply Functions
- String Manipulation
- Basic Statistics
- Writing Functions
- Linear Models
- Generalized Linear Models
- Notebooks and Reports
Miscellany
- Thoughts on Oxford/series commas?
Style guide notes:
- **bold** packages/libraries, e.g., **pandas** and **dplyr**
- function names include parentheses; `gsub()`