Skip to the content.

Hanze


Go back to the main page


Portfolio R for Medical Diagnostics students

The Portfolio Assignment

As the R part is only 1 EC for Medical Diagnostics students, the R part is considerably shorter. It consists only of the Base R part and an Excel import of lab data. Tidyverse will be omitted.

Thus it consists of the following parts:

And for loading data from an Excel file:

For the import, just focus on the part about readxl.

Your Workflow: Step-by-Step

Follow these steps to complete your portfolio effectively:

Example YAML:

---
title: "Calories Food"
author: "Jane Doe"
date: "2025-04-10"
output: 
  prettydoc::html_pretty:
    theme: cayman
    highlight: github
---

Note that the YAML front matter code block should start and end with 3 dashes.

The prettydoc package is required. You can install it using:

install.packages("prettydoc")

And you can load it using:

library(prettydoc)

Good luck! 🍀


Go back to the main page
⬆️ Back to Top


This web page is distributed under the terms of the Creative Commons Attribution License which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. Creative Commons License: CC BY-SA 4.0.