| write.agdex.result {AGDEX} | R Documentation |
A function to write the results of an AGDEX analysis to a tab-delimited text output file that can be viewed in Excel or re-imported with the function read.agdex.result.
write.agdex.result(agdex.res, out.file)
agdex.res |
result object produced by the agdex function |
out.file |
name of the output file |
Stan Pounds<stanley.pounds@stjude.org; Cuilan Lani Gao<cuilan.gao@stjude.org>
data(agdex.res)
## Not run:
#set the wording dictionary
setwd("localWorking dictionary")
#write the agdex result to an out file
\dontrun{
write.agdex.result(agdex.res, "agdex.result.txt")
}
#read the result file stored on dist back into R
agdex.res2 <- read.agdex.result("agdex.result.txt")
## End(Not run)