docdescriptR: Descriptive Report in .docx file

Description Usage Arguments Value References Examples

View source: R/Reporter-Descriptive.R

Description

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

Usage

1
docdescriptR(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(docdescriptR)
data(iris)
dir = tempdir()
write.csv(iris,file=paste(dir,"iriscsvfile.csv",sep=""))
docdescriptR(path=paste(dir,"iriscsvfile.csv",sep=""))

docdescriptR documentation built on July 1, 2020, 6:08 p.m.