Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Scripts should start with a header that includes the following components:
| **Date** | The creation or last modification date of the code, formatted as YYYY-MM-DD for consistency. |
| **Inputs** | A list of the input data, files, or parameters required for the script to run, including file paths or formats. |
| **Outputs** | A description of the output produced by the script, including file names, formats, and what the results represent. |
| **Notes** | A concise explanation of what the code does, its purpose, and any important details about its function. |
| **Notes** | A concise explanation of what the code does, its purpose, and any important details about its function. You can also use this section to list proposed improvements for the code for future iterations. |


**Example header in YAML-like format:**
Expand Down Expand Up @@ -173,6 +173,8 @@ Subdivide sections as needed with descriptive numbered subheadings:
filtered_data <- data %>% filter(variable == "value")
```

Use four trailing dashes (-), equal signs (=), or hashtags (#) at the end of your headings to create discrete sections that are foldable and navigable within RStudio's **Jump To** menu at the bottom of the editor.

---

## 3. Documenting Functions
Expand Down