Description Usage Arguments Value Examples
Writes a rmd file for the Factor Analysis Report [WIP]
1 2 3 | ## S3 method for class 'FAReport'
writeReport(report, sub.dir = "Data_Report",
save.mode = TRUE, override = FALSE)
|
report |
[ |
sub.dir |
[ |
save.mode |
[ |
override |
[ |
Invisible NULL
1 2 3 4 5 6 7 8 9 10 | library(psych)
data(bfi)
#take small sample of size 200L:
bfi_small = bfi[sample(seq_len(nrow(bfi)), size = 200L), ]
FA.task = makeFATask(id = "bfi", data = bfi_small)
FA.result = makeFA(FA.task)
#create the report
FA.report = makeReport(FA.result)
#write the report
writeReport(FA.report, save.mode = FALSE, override = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.