Learn R Programming

valection (version 1.0.0)

run.equal.per.caller: Run the equal per caller algorithm

Description

Runs the equal per caller algorithm from the valection library.

Usage

run.equal.per.caller(budget, infile, outfile, seed);

Arguments

budget

An integer specifying the number of candidates to select.

infile

Path to input file. It should be formatted with a tab separating the caller and call on each line.

caller1 name a call this caller made caller2 name a call this caller made

outfile

Path to a filename where the calls should be outputted.

seed

An integer specifying the random seed value. Optional.

Details

Sampling calls where an equal number of calls is selected from each caller.

Examples

Run this code
# NOT RUN {
	run.equal.per.caller(
		budget  = 5,
		infile  = system.file("extdata/infile_example.tsv", package = "valection"),
		outfile = "outfile_runEqualPerCaller.txt"
		);
# }

Run the code above in your browser using DataLab