Generate a useful script to consistently save the output data from QuPath in .csv format following the naming conventions followed during the package development.
generate_qupath_script(output_dir = NULL)
Invisibly returns the path to the generated script file.
Directory where the script should be saved. If NULL, uses tempdir()
if (FALSE) {
# Generate script in a temporary directory
generate_qupath_script()
# Generate script in a specific directory
output_dir <- tempdir()
generate_qupath_script(output_dir = output_dir)
}
Run the code above in your browser using DataLab