inst/examples/simple_pbs.r

# Sample R code for "PBSadmb" with the example "simple_pbs.tpl"

# Before sourcing this file, have a valid file pathfile 
# in the current working directory (default = "ADpaths.txt", 
# but user can specify any file name in setupAD() ).

# Load R packages; ignore the GUI for now.
require(PBSmodelling); require(PBSadmb)
setupAD()

# Make and run "simple_pbs.exe"
makeAD("simple_pbs"); runAD("simple_pbs");

# Read and unpack the report;
# i.e., create R variables with the same names used in "simple_pbs.tpl"
simplePBS <- readList("simple_pbs.rep"); unpackList(simplePBS);

# Plot the data
plot(x,y); lines(x,ypred,col="red",lwd=2);

# Check the calculations in R

ypredR <- a + b*x; nobs <- length(x);
fvalR <- nobs*log(sigma) + sum((ypredR-y)^2)/(2.0*sigma^2)

cat("Functions values (ADMB & R):\n");
cat(fval,"   ",fvalR,"\n")

cat("Predictions (ADMB & R):\n");
cat(ypred,"\n");
cat(ypredR,"\n");

Try the PBSadmb package in your browser

Any scripts or data that you put into this service are public.

PBSadmb documentation built on Nov. 11, 2023, 1:07 a.m.