##### COPYRIGHT #############################################################################################################
#
# Copyright (C) 2018 JANSSEN RESEARCH & DEVELOPMENT, LLC
# This package is governed by the JRD OCTOPUS License, which is the
# GNU General Public License V3 with additional terms. The precise license terms are located in the files
# LICENSE and GPL.
#
#############################################################################################################################.
# This example uses JAGS as such you must have JAGS and the libraries R2jags, rjags installed which can be installed with install.packages.
# To obtain then installer for JAGS goto http://www.sourceforge.net/projects/mcmc-jags/files
remove( list=ls() )
library( R2jags)
#The next line is just so this example will print the headers on the output file if you are running it locally. Otherwise leave it commented out
#Sys.setenv(SGE_TASK_ID=1)
library( OCTOPUS)
####################################################################################################
# Source the setup files
####################################################################################################
source( "TrialDesign.R")
source( "SimulationDesign.R")
source( "TrialDesignFunctions.R")
cTrialDesign <- SetupTrialDesign( )
cSimulation <- SetupSimulations( cTrialDesign, nQtyReps=5 )
# As a general best practice it is good to remove all objects in the global environment just to make sure they are not inadvertently used.
# The only object that is needed is the cSimulation object.
rm( list=(ls()[ls()!="cSimulation" ]))
gDebug <- FALSE
#Files specific for specific example
source( "AnalysisModelBayesianAR1.R")
source( "SimPatientOutcomes.MVNWithCovariateCS3.R") # Add a new type of simulaiton outcome.
RunSimulation( cSimulation )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.