LETGRADE {ProfessR}R Documentation

Letter Grade

Description

given a numeric grade return a letter grade

Usage

LETGRADE(g)

Arguments

g

numeric grade between 1-100

Details

returns a grade based on a 4 point spread

Value

character vector of grades

Note

Failing grade is "E" by default. There is no "A+" in this program (UNC policy)

Author(s)

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

Examples

g = rnorm(25, m=82, sd=10)
g[g>100] = 100
g[g<1] = 1


L = LETGRADE(g)

cbind(g, L)



[Package ProfessR version 2.4-3 Index]