Learn R Programming

ROP (version 1.0)

rop: Launch of the analysis

Description

Launch function of the analysis

Usage

rop(fic, output_folder, mini, maxi, nbCycles, typesVariables)

Arguments

fic

Name of the file to analyze in csv format (for example titanic.csv)

output_folder

Path to the output folder

mini

Value of the minimum weighting

maxi

Value of the maximum weighting

nbCycles

Maximum number of cycles to apply

typesVariables

Boolean vector tracking qualitative (F) and quantitative (T) variables

Value

No value returned

Examples

Run this code
# NOT RUN {
rop(
  fic = system.file("extdata", "titanic.csv", package = "ROP"),
  output_folder = tempdir(),
  mini = -1,
  maxi = 1,
  nbCycles = 2,
  typesVariables = c(FALSE, FALSE, FALSE)
)

# }

Run the code above in your browser using DataLab