Displaying 1 result from an estimated 1 matches for "df1_row".
Did you mean:
  df1_new
  
2010 Dec 06
0
npRmpi memory error
...ystem         x86_64, linux-gnu
status
major          2
minor          12.0
year           2010
month          10
day            15
svn rev        53317
language       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],...)...