IDandEM: Match ID and Email file

View source: R/IDandEM.R

IDandEMR Documentation

Match ID and Email file

Description

Match ID and Email file

Usage

IDandEM(scrfn, sisroster, sel = 1:2, hnote = "Exam Results", SEND = TRUE)

Arguments

scrfn

list(ID=number, nam="name on scantron")

sisroster

list(ID=number, lastname='last name of student', fullname='full name of student')

sel

numeric, index= specify for a specific student

hnote

text, subject line on E-mail

SEND

logical, if FALSE, do not send

Details

A set of files has been separated and stored. Each file is to sent to a different student with the exam results.

Value

Side Effects

Note

The IDs of the reference data base (the roster) must match the IDs in the list of files. If not, use repair.id to fix the scantron IDs

Author(s)

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

See Also

repair.id

Examples


## Not run: 
##  read in the names of the files
zfile = scan(file="ALLIDS", list(name="", ID=0, tfile=""), sep="," )
##  read in a roster.  The roster has
##   email addresses that are attached tot he files
##  by matching the ID in the zfile with the IDs in the data base
load(file="/home/lees/Class/GEOL_105/Grades_2008/EXAM1/BB1.RDATA")

jroster = BB1

IDandEM(zfile, jroster, sel=1:10, hnote="GEOL105 EXAM3 Results", SEND=FALSE )
IDandEM(zfile, jroster,  hnote="GEOL105 EXAM3 Results", SEND=FALSE )

######## actual sending
IDandEM(zfile, jroster, hnote="GEOL105 EXAM3 Results", SEND=TRUE )




## End(Not run)





ProfessR documentation built on Aug. 21, 2023, 9:07 a.m.