├── .Rhistory ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── aggregateForBarplot.R ├── aggregateForHistogram.R ├── allCheckFunctions.R ├── allClasses.R ├── allSummaryFunctions.R ├── allVisualFunctions.R ├── allXFunctions.R ├── basicVisual.R ├── centralValue.R ├── check.R ├── checkFunction.R ├── checkResult.R ├── classes.R ├── countMissing.R ├── dataReporter-package.R ├── dataReporter_as_factor.R ├── description.R ├── identifyCaseIssues.R ├── identifyLoners.R ├── identifyMissing.R ├── identifyNums.R ├── identifyOutliers.R ├── identifyOutliersTBStyle.R ├── identifyWhitespace.R ├── isCPR.R ├── isEmpty.R ├── isKey.R ├── isSingular.R ├── isSupported.R ├── makeCodebook.R ├── makeDataReport.R ├── makeXFunction.R ├── messageGenerator.R ├── minMax.R ├── misc.R ├── quartiles.R ├── refCat.R ├── render.R ├── setChecks.R ├── setSummaries.R ├── setVisuals.R ├── smartNum.R ├── standardVisual.R ├── summarize.R ├── summaryFunction.R ├── summaryResult.R ├── tableVisual.R ├── uniqueValues.R ├── unpackLabelled.R ├── utility.R ├── variableType.R ├── visualFunction.R └── visualize.R ├── README.html ├── README.md ├── data ├── artData.rda ├── bigPresidentData.rda ├── exampleData.RData ├── presidentData.rda ├── testData.RData └── toyData.RData ├── inst └── CITATION ├── man ├── allCheckFunctions.Rd ├── allClasses.Rd ├── allSummaryFunctions.Rd ├── allVisualFunctions.Rd ├── artData.Rd ├── basicVisual.Rd ├── basicVisualCFLB.Rd ├── bigPresidentData.Rd ├── centralValue.Rd ├── check.Rd ├── checkFunction.Rd ├── checkResult.Rd ├── classes.Rd ├── countMissing.Rd ├── defaultCharacterChecks.Rd ├── defaultCharacterSummaries.Rd ├── defaultDateChecks.Rd ├── defaultDateSummaries.Rd ├── defaultFactorChecks.Rd ├── defaultFactorSummaries.Rd ├── defaultHavenlabelledChecks.Rd ├── defaultHavenlabelledSummaries.Rd ├── defaultIntegerChecks.Rd ├── defaultIntegerSummaries.Rd ├── defaultLabelledChecks.Rd ├── defaultLabelledSummaries.Rd ├── defaultLogicalChecks.Rd ├── defaultLogicalSummaries.Rd ├── defaultNumericChecks.Rd ├── defaultNumericSummaries.Rd ├── description.Rd ├── exampleData.Rd ├── figures │ └── logo.png ├── identifyCaseIssues.Rd ├── identifyLoners.Rd ├── identifyMissing.Rd ├── identifyNums.Rd ├── identifyOutliers.Rd ├── identifyOutliersTBStyle.Rd ├── identifyWhitespace.Rd ├── isCPR.Rd ├── isKey.Rd ├── isSingular.Rd ├── isSupported.Rd ├── makeCodebook.Rd ├── makeDataReport.Rd ├── messageGenerator.Rd ├── minMax.Rd ├── presidentData.Rd ├── quartiles.Rd ├── refCat.Rd ├── render.Rd ├── setChecks.Rd ├── setSummaries.Rd ├── setVisuals.Rd ├── smartNum.Rd ├── standardVisual.Rd ├── summarize.Rd ├── summaryFunction.Rd ├── summaryResult.Rd ├── tableVisual.Rd ├── testData.Rd ├── toyData.Rd ├── uniqueValues.Rd ├── variableType.Rd ├── visualFunction.Rd ├── visualize.Rd └── whoami_available.Rd ├── tests ├── testthat.R └── testthat │ ├── atomic.R │ ├── spss_labelled.rda │ ├── testcheck.R │ ├── testisLoner.R │ ├── testmakeReport.R │ ├── testminMax.R │ ├── testsummarize.R │ └── testvariableType.R └── vignettes ├── .gitignore └── extending_dataReporter.Rmd /.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/.Rhistory -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aggregateForBarplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/aggregateForBarplot.R -------------------------------------------------------------------------------- /R/aggregateForHistogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/aggregateForHistogram.R -------------------------------------------------------------------------------- /R/allCheckFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/allCheckFunctions.R -------------------------------------------------------------------------------- /R/allClasses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/allClasses.R -------------------------------------------------------------------------------- /R/allSummaryFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/allSummaryFunctions.R -------------------------------------------------------------------------------- /R/allVisualFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/allVisualFunctions.R -------------------------------------------------------------------------------- /R/allXFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/allXFunctions.R -------------------------------------------------------------------------------- /R/basicVisual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/basicVisual.R -------------------------------------------------------------------------------- /R/centralValue.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/centralValue.R -------------------------------------------------------------------------------- /R/check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/check.R -------------------------------------------------------------------------------- /R/checkFunction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/checkFunction.R -------------------------------------------------------------------------------- /R/checkResult.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/checkResult.R -------------------------------------------------------------------------------- /R/classes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/classes.R -------------------------------------------------------------------------------- /R/countMissing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/countMissing.R -------------------------------------------------------------------------------- /R/dataReporter-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/dataReporter-package.R -------------------------------------------------------------------------------- /R/dataReporter_as_factor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/dataReporter_as_factor.R -------------------------------------------------------------------------------- /R/description.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/description.R -------------------------------------------------------------------------------- /R/identifyCaseIssues.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/identifyCaseIssues.R -------------------------------------------------------------------------------- /R/identifyLoners.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/identifyLoners.R -------------------------------------------------------------------------------- /R/identifyMissing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/identifyMissing.R -------------------------------------------------------------------------------- /R/identifyNums.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/identifyNums.R -------------------------------------------------------------------------------- /R/identifyOutliers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/identifyOutliers.R -------------------------------------------------------------------------------- /R/identifyOutliersTBStyle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/identifyOutliersTBStyle.R -------------------------------------------------------------------------------- /R/identifyWhitespace.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/identifyWhitespace.R -------------------------------------------------------------------------------- /R/isCPR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/isCPR.R -------------------------------------------------------------------------------- /R/isEmpty.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/isEmpty.R -------------------------------------------------------------------------------- /R/isKey.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/isKey.R -------------------------------------------------------------------------------- /R/isSingular.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/isSingular.R -------------------------------------------------------------------------------- /R/isSupported.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/isSupported.R -------------------------------------------------------------------------------- /R/makeCodebook.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/makeCodebook.R -------------------------------------------------------------------------------- /R/makeDataReport.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/makeDataReport.R -------------------------------------------------------------------------------- /R/makeXFunction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/makeXFunction.R -------------------------------------------------------------------------------- /R/messageGenerator.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/messageGenerator.R -------------------------------------------------------------------------------- /R/minMax.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/minMax.R -------------------------------------------------------------------------------- /R/misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/misc.R -------------------------------------------------------------------------------- /R/quartiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/quartiles.R -------------------------------------------------------------------------------- /R/refCat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/refCat.R -------------------------------------------------------------------------------- /R/render.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/render.R -------------------------------------------------------------------------------- /R/setChecks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/setChecks.R -------------------------------------------------------------------------------- /R/setSummaries.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/setSummaries.R -------------------------------------------------------------------------------- /R/setVisuals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/setVisuals.R -------------------------------------------------------------------------------- /R/smartNum.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/smartNum.R -------------------------------------------------------------------------------- /R/standardVisual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/standardVisual.R -------------------------------------------------------------------------------- /R/summarize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/summarize.R -------------------------------------------------------------------------------- /R/summaryFunction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/summaryFunction.R -------------------------------------------------------------------------------- /R/summaryResult.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/summaryResult.R -------------------------------------------------------------------------------- /R/tableVisual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/tableVisual.R -------------------------------------------------------------------------------- /R/uniqueValues.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/uniqueValues.R -------------------------------------------------------------------------------- /R/unpackLabelled.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/unpackLabelled.R -------------------------------------------------------------------------------- /R/utility.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/utility.R -------------------------------------------------------------------------------- /R/variableType.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/variableType.R -------------------------------------------------------------------------------- /R/visualFunction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/visualFunction.R -------------------------------------------------------------------------------- /R/visualize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/R/visualize.R -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/README.md -------------------------------------------------------------------------------- /data/artData.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/data/artData.rda -------------------------------------------------------------------------------- /data/bigPresidentData.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/data/bigPresidentData.rda -------------------------------------------------------------------------------- /data/exampleData.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/data/exampleData.RData -------------------------------------------------------------------------------- /data/presidentData.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/data/presidentData.rda -------------------------------------------------------------------------------- /data/testData.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/data/testData.RData -------------------------------------------------------------------------------- /data/toyData.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/data/toyData.RData -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/allCheckFunctions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/allCheckFunctions.Rd -------------------------------------------------------------------------------- /man/allClasses.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/allClasses.Rd -------------------------------------------------------------------------------- /man/allSummaryFunctions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/allSummaryFunctions.Rd -------------------------------------------------------------------------------- /man/allVisualFunctions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/allVisualFunctions.Rd -------------------------------------------------------------------------------- /man/artData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/artData.Rd -------------------------------------------------------------------------------- /man/basicVisual.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/basicVisual.Rd -------------------------------------------------------------------------------- /man/basicVisualCFLB.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/basicVisualCFLB.Rd -------------------------------------------------------------------------------- /man/bigPresidentData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/bigPresidentData.Rd -------------------------------------------------------------------------------- /man/centralValue.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/centralValue.Rd -------------------------------------------------------------------------------- /man/check.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/check.Rd -------------------------------------------------------------------------------- /man/checkFunction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/checkFunction.Rd -------------------------------------------------------------------------------- /man/checkResult.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/checkResult.Rd -------------------------------------------------------------------------------- /man/classes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/classes.Rd -------------------------------------------------------------------------------- /man/countMissing.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/countMissing.Rd -------------------------------------------------------------------------------- /man/defaultCharacterChecks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultCharacterChecks.Rd -------------------------------------------------------------------------------- /man/defaultCharacterSummaries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultCharacterSummaries.Rd -------------------------------------------------------------------------------- /man/defaultDateChecks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultDateChecks.Rd -------------------------------------------------------------------------------- /man/defaultDateSummaries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultDateSummaries.Rd -------------------------------------------------------------------------------- /man/defaultFactorChecks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultFactorChecks.Rd -------------------------------------------------------------------------------- /man/defaultFactorSummaries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultFactorSummaries.Rd -------------------------------------------------------------------------------- /man/defaultHavenlabelledChecks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultHavenlabelledChecks.Rd -------------------------------------------------------------------------------- /man/defaultHavenlabelledSummaries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultHavenlabelledSummaries.Rd -------------------------------------------------------------------------------- /man/defaultIntegerChecks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultIntegerChecks.Rd -------------------------------------------------------------------------------- /man/defaultIntegerSummaries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultIntegerSummaries.Rd -------------------------------------------------------------------------------- /man/defaultLabelledChecks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultLabelledChecks.Rd -------------------------------------------------------------------------------- /man/defaultLabelledSummaries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultLabelledSummaries.Rd -------------------------------------------------------------------------------- /man/defaultLogicalChecks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultLogicalChecks.Rd -------------------------------------------------------------------------------- /man/defaultLogicalSummaries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultLogicalSummaries.Rd -------------------------------------------------------------------------------- /man/defaultNumericChecks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultNumericChecks.Rd -------------------------------------------------------------------------------- /man/defaultNumericSummaries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/defaultNumericSummaries.Rd -------------------------------------------------------------------------------- /man/description.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/description.Rd -------------------------------------------------------------------------------- /man/exampleData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/exampleData.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/identifyCaseIssues.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/identifyCaseIssues.Rd -------------------------------------------------------------------------------- /man/identifyLoners.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/identifyLoners.Rd -------------------------------------------------------------------------------- /man/identifyMissing.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/identifyMissing.Rd -------------------------------------------------------------------------------- /man/identifyNums.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/identifyNums.Rd -------------------------------------------------------------------------------- /man/identifyOutliers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/identifyOutliers.Rd -------------------------------------------------------------------------------- /man/identifyOutliersTBStyle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/identifyOutliersTBStyle.Rd -------------------------------------------------------------------------------- /man/identifyWhitespace.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/identifyWhitespace.Rd -------------------------------------------------------------------------------- /man/isCPR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/isCPR.Rd -------------------------------------------------------------------------------- /man/isKey.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/isKey.Rd -------------------------------------------------------------------------------- /man/isSingular.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/isSingular.Rd -------------------------------------------------------------------------------- /man/isSupported.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/isSupported.Rd -------------------------------------------------------------------------------- /man/makeCodebook.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/makeCodebook.Rd -------------------------------------------------------------------------------- /man/makeDataReport.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/makeDataReport.Rd -------------------------------------------------------------------------------- /man/messageGenerator.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/messageGenerator.Rd -------------------------------------------------------------------------------- /man/minMax.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/minMax.Rd -------------------------------------------------------------------------------- /man/presidentData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/presidentData.Rd -------------------------------------------------------------------------------- /man/quartiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/quartiles.Rd -------------------------------------------------------------------------------- /man/refCat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/refCat.Rd -------------------------------------------------------------------------------- /man/render.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/render.Rd -------------------------------------------------------------------------------- /man/setChecks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/setChecks.Rd -------------------------------------------------------------------------------- /man/setSummaries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/setSummaries.Rd -------------------------------------------------------------------------------- /man/setVisuals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/setVisuals.Rd -------------------------------------------------------------------------------- /man/smartNum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/smartNum.Rd -------------------------------------------------------------------------------- /man/standardVisual.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/standardVisual.Rd -------------------------------------------------------------------------------- /man/summarize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/summarize.Rd -------------------------------------------------------------------------------- /man/summaryFunction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/summaryFunction.Rd -------------------------------------------------------------------------------- /man/summaryResult.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/summaryResult.Rd -------------------------------------------------------------------------------- /man/tableVisual.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/tableVisual.Rd -------------------------------------------------------------------------------- /man/testData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/testData.Rd -------------------------------------------------------------------------------- /man/toyData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/toyData.Rd -------------------------------------------------------------------------------- /man/uniqueValues.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/uniqueValues.Rd -------------------------------------------------------------------------------- /man/variableType.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/variableType.Rd -------------------------------------------------------------------------------- /man/visualFunction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/visualFunction.Rd -------------------------------------------------------------------------------- /man/visualize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/visualize.Rd -------------------------------------------------------------------------------- /man/whoami_available.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/man/whoami_available.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/atomic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/tests/testthat/atomic.R -------------------------------------------------------------------------------- /tests/testthat/spss_labelled.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/tests/testthat/spss_labelled.rda -------------------------------------------------------------------------------- /tests/testthat/testcheck.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/tests/testthat/testcheck.R -------------------------------------------------------------------------------- /tests/testthat/testisLoner.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/tests/testthat/testisLoner.R -------------------------------------------------------------------------------- /tests/testthat/testmakeReport.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/tests/testthat/testmakeReport.R -------------------------------------------------------------------------------- /tests/testthat/testminMax.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/tests/testthat/testminMax.R -------------------------------------------------------------------------------- /tests/testthat/testsummarize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/tests/testthat/testsummarize.R -------------------------------------------------------------------------------- /tests/testthat/testvariableType.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/tests/testthat/testvariableType.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/extending_dataReporter.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekstroem/dataReporter/HEAD/vignettes/extending_dataReporter.Rmd --------------------------------------------------------------------------------