Query:
i= #input#
Order_count <- aggregate(Order_level["order_no"], by = Order_level[2:i], FUN = length)
Error in [[<-.data.frame(*tmp*, len + i, value = c(25L, 55L, 1L, 5L, : replacement has 172 rows, data has 173
There are no null values in the data (order_level) and the error occurs when the range in by list is more than 60.
When the by list has 19 columns, it runs and gives the desired output. But when the range is increased to around 60. it gives the above error. Also, the query was run for data set with 1000 rows. But the number of columns in the by-list was 106. It gave the above error.
Is there any specific range that "by list" can take into account in the aggregate function?
Query:
ls.str(Order_level)
output:
order_no : chr [1:1000] "2677752368618" "2677752368619" "2677752368631" ...
PATIO DECOR : num [1:1000] 0 0 0 0 0 0 0 0 0 0 ...
PATIO DECOR_u : num [1:1000] 0 0 0 0 0 0 0 0 0 0 ...
PATIO FURNITURE : num [1:1000] 0 0 1 0 0 0 0 0 0 0 ...
PATIO FURNITURE_u : num [1:1000] 0 0 1 0 0 0 0 0 0 0 ...
PERIPHERALS : num [1:1000] 0 0 0 0 0 0 0 0 0 0 ...
PERIPHERALS_u : num [1:1000] 0 0 0 0 0 0 0 0 0 0 ...
PET SUPPLY : num [1:1000] 0 0 0 0 0 0 0 0 0 0 ...
There are more columns populated the same way and are numeric. The total no. of columns would be around 212. Among these, 106 columns are required for the "by list".
In the aggregate query the "by list" consists of the numeric columns (PATIO DECOR, PERIPHERALS, etc)
str) of your objects. You could also tryls.str(). – Roman Luštrik May 16 '12 at 7:18