Learn R Programming

sbpiper (version 1.9.0)

objval_vs_iters_analysis: Analysis of the Objective values vs Iterations.

Description

Analysis of the Objective values vs Iterations.

Usage

objval_vs_iters_analysis(model, filename, plots_dir)

Arguments

model

the model name

filename

the filename containing the fits sequence

plots_dir

the directory to save the generated plots

Examples

Run this code
# NOT RUN {
dir.create(file.path("pe_datasets"))
dir.create(file.path("pe_plots"))
data(insulin_receptor_all_fits)
colnames(insulin_receptor_all_fits)[1] <- "ObjVal"
write.table(insulin_receptor_all_fits, 
            file=file.path("pe_datasets", "all_fits.csv"), 
            row.names=FALSE)
objval_vs_iters_analysis(model="model", 
                         filename=file.path("pe_datasets", "all_fits.csv"), 
                         plots_dir="pe_plots")
# }

Run the code above in your browser using DataLab