executeSchedule {RFreak} | R Documentation |
Executes a schedule created by the FrEAK schedule editor and returns a summary of the result.
executeSchedule(freakfile = "schedule.freak")
freakfile |
File containing the schedule to be executed |
Returns an object of class FreakReturn
enwrapping a data.frame
in its only slot summary
containing information about the last population of the executed schedule.
For each individual in the last population the following information is contained:
run |
The run the individual was found in |
generation |
The generation the individual was created in |
objective value(s) |
The objective value(s) as returned by the fitness function |
individual |
A string representation of the individual |
To obtain a result, the schedule needs to have a stopping criterion and the observer "Result" and the view "R Return" which are automatically preselected when using launchScheduleEditor
.
Robin Nunkesser Robin.Nunkesser@tu-dortmund.de
launchScheduleEditor
, "FreakReturn"
## Not run: # Start the schedule editor and set up a schedule launchScheduleEditor() # Execute the set up schedule. executeSchedule() ## End(Not run)