write_results {likelihood} | R Documentation |
Write the Results of Simulated Annealing to File
Description
Takes the results produced by the function anneal
and
writes them to a tab-delimited text file.
Usage
write_results(results, filename, data = TRUE, print_whole_hist = FALSE)
Arguments
results |
The output list produced by the function
|
filename |
A string with the file and path to the file you wish to write. This will overwrite any existing files of that name. This will not add any file extensions so remember to put on the appropriate one. |
data |
If TRUE, the |
print_whole_hist |
If TRUE, the entire likelihood history of the run is printed; if FALSE, it is not. Long runs can have rather long histories. |
Value
A file with the contents of results
written as tab-delimited text.
See Also
Examples
## Assuming you have performed a simulated annealing run and placed the
## results in an object called "my_results"...
## Not run: write_results(my_results, "c:\results.txt")
[Package likelihood version 1.9 Index]