You can use R to quickly calculate your final mark for a module from your component marks, assuming you know the weighting of each component (usually provided on the module description). Here’s how:
Start a new project in RStudio.
Enter your percentage marks for each component for the module:
portfolio <- 65
poster <- 22
mcq <- 87
data <- 35
Of course, replace the marks above with your own marks :-)
c
command:components <- c(portfolio, poster, mcq, data)
weights <- c(.35, .3, .3, .05)
sum
command, and then round to the nearest whole percentage, using the round
command:round(sum(components * weights))
[1] 57
The number you get from the above command is your overall module mark.
This material is distributed under a Creative Commons licence. CC-BY-SA 4.0.