search for: col_bw

Displaying 1 result from an estimated 1 matches for "col_bw".

Did you mean: col_b
2010 Dec 06
0
npRmpi memory error
...nguage R version.string R version 2.12.0 (2010-10-15) Here's the home-brew function I'm using; npdenseqtestMatrix <- function(df1_row,df2_col,var_names,...) { dim_nms_row <- unique(df1_row[,'cat']) dim_nms_col <- unique(df2_col[,'cat']) tn_pval <- c() col_bw <- list() for(i in dim_nms_col) { col_bw[[which(dim_nms_col==i)]] <- npudensbw(df2_col[which(df2_col[,'cat']==i),var_names],...) } for(i in dim_nms_row) { df1_row_bw <- npudensbw(df1_row[which(df1_row[,'cat']==i),var_names],...) for(j in dim_nms_col) { tn_pval &...