docinfeR: Inference Report in .docx file

Description Usage Arguments Value References Examples

View source: R/Reporter-Inference.R

Description

This R Package asks for a .csv file with data and returns a report (.docx) with Inference Report concerning all possible combinations of variables (i.e. columns).

Usage

1
docinfeR(path = "", var.type = "all")

Arguments

path

(Optional) A character vector with the path to data file. If empty character string (""), interface will appear to choose file.

var.type

(Optional) The type of variables to perform analysis, with possible values: "all", "numeric", "integer", "double", "factor", "character".

Value

The output will be a document in the temp folder (tempdir()).

References

\insertAllCited

Examples

1
2
3
4
5
library(docinfeR)
data(iris)
dir = tempdir()
write.csv(iris,file=paste(dir,"iriscsvfile.csv",sep=""))
docinfeR(path=paste(dir,"iriscsvfile.csv",sep=""))

docinfeR documentation built on July 1, 2020, 6:02 p.m.