This consumes a lot of memory and might not be a feasible solution for very large simulations that might produce several gigabytes of results. I propose a new function called check_missing_simulations(), which would load each file, store the replication count, and then discard the actual simulation results before loading the next result file.
Reasonable request, though an extra function is uncessary. You can now do this via aggregate_simulations(files, check.only=TRUE), which will return the problematic designs and their replication count.
The current way of checking for incomplete designs in distributed simulations is as follows:
This consumes a lot of memory and might not be a feasible solution for very large simulations that might produce several gigabytes of results. I propose a new function called
check_missing_simulations()
, which would load each file, store the replication count, and then discard the actual simulation results before loading the next result file.