seequestions {ProfessR} | R Documentation |
See Questions Sequentially
Description
Print questions to the screen
Usage
seequestions(QB)
Arguments
QB |
Question Bank |
Details
Prints just the questions to the screen.
Value
Prints to screen
Author(s)
Jonathan M. Lees<jonathan.lees@unc.edu>
See Also
seebank
Examples
## Not run:
LF = list.files(path="/home/lees/Class/GEOL_105/TESTBANK/EXAM_1", pattern="txt", full.names=TRUE )
kbank = vector(mode='list')
###### read in the question banks, each in one file
for(i in 1:length(LF))
{
h = Get.testbank(LF[i])
kbank[[i]] = Get.testbank(LF[i])
}
names(kbank) = LF
cbind( seequestions(kbank[[1]]) )
## End(Not run)
[Package ProfessR version 2.4-3 Index]