Learn R Programming

ProfessR (version 2.4-1)

ProfessR-package: Grades Setting and Exam Maker

Description

Programs to determine student grades and create examinations from Question banks. Programs will create numerous multiple choice exams, randomly shuffled, for different versions of same question list.

Arguments

Author

Jonathan M. Lees

Maintainer: Jonathan M. Lees<jonathan.lees@unc.edu>

Details

Package:ProfessR
Type:Package
Version:2.0
Date:2012-11-26
License:GPL

Examples

Run this code

################  making tests:

if (FALSE) {
data(QBANK1)
make.exam(QBANK1, ofile="exam1.tex")
}


#################  setting grades:
g = rnorm(n=130, m=82, sd=10)
g[g>100] = 100
g[g<1] = 1

B = boxplot(g)

divs = c(min(g), B$stats[1:4] + diff(B$stats)/2, max(g) )

D1 = do.grades(g, divs=divs, tit="GEOL 105 Exam 1")




Run the code above in your browser using DataLab