Usage
orddom_f(x,y, ... ,outputfile="orddom_csv.txt",quotechar=TRUE,decimalpt=".", separator="\t",notavailable="NA",endofline="\n")
Arguments
x
A 1-column matrix with optional column name containing all $n_x$ values or scores of group X or 1 (e.g. control or pretest group.); see orddom
for details. y
A 1-column matrix with optional column name containing all $n_y$ values of group Y or 2 (e.g. treatment or post-test group); see orddom
for details. ...
Other arguments to be passed on to the orddom
function (such as e.g. paired, studdist, symmetric, x.name, description etc.; see orddom
for details.) outputfile
A filename for the report should be given here. The report as standard text file is written to the current working directory. All data are appended to this file.
If the file does not exist initially, row headers are produced.
quotechar
By default, string outputs are quoted.
decimalpt
By default, numeric outputs use the colon as decimal point. Where commas are used instead, this argument should be set to ...,decimalpt=",",... .
separator
By default, field entries are separated by tabulators (...,separator="\tab",...).
If, for example, .csv files are to be produced using the semicolon as the field separator, this argument should be set to ...,separator=";",....
notavailable
By default, if field entries are ot available, "NA" is printed to the file.
Other values to be printed can be given, e.g. ...,notavailable="",... or ...,notavailable="NULL",....
endofline
By default, a carriage return denotes the end of the single output line.
Other values may be given, such as the IETF standard for csv files (...,endofline="\r\n",...).