My workflow essentially pulls data from a file and processes it through a python script. Each time I run the script I select random records (1000 records at a time) from the data source, look at the result from the script and adjust the code. Is there a way I can automate this process so that it would run hundreds of times with a random selection of records (from a pool of over 10 million records) and record the output (a single numeric value) of each run?
Thanks!