Skip to content

awellis/mcq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mcq R package

Process and score multiple choice questions

Installation

remotes::install_github("awellis/mcq")

Usage

Load packges:

library(tidyverse)
library(mcq)

Read in exam results and answers from Excel spreadsheet:

results <- readxl::read_excel("Ergebnisse.xlsx",
                              sheet = "Antworten") %>%
    select(Matrikel, StudisID, Nachname, Vorname, Serie,
           starts_with("A_"), starts_with("K_"))

 

answers <- readxl::read_excel("Ergebnisse.xlsx",
                              sheet = "Loesung") %>%
    select(Serie, starts_with("A_"), starts_with("K_"))

Combine A and K' question results:

exam_results <- score_exams(results = results, answers = answers)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages