Displaying 1 result from an estimated 1 matches for "pairs_method".
2012 Jan 15
0
Reading MINE output into a matrix
...)
#write CSV file of data to current working directory
datafilename <- "indexes.csv"
write.table(indexes, datafilename, sep=",", col.names=TRUE,
row.names=FALSE, quote=FALSE, na="NA")
#read MINE R code
source.with.encoding('MINE.r', encoding='UTF-8')
pairs_method <- "all.pairs"
max_num_boxes_exponent <- 0.6
num_clumps_factor <- 15
#run MINE routine on data
MINE(datafilename,style=pairs_method,
max.num.boxes.exponent=max_num_boxes_exponent,
num.clumps.factor=num_clumps_factor)
#read output of MINE routine
#data is sorted in des...