building_model: Build the jags model code

View source: R/building_model.R

building_modelR Documentation

Build the jags model code

Description

Based on data, this function build the jags model that will be used by runjags. The model is either an escropath or an escroc model depeding on the data

Usage

building_model(mydata)

Arguments

mydata

a list data returned by prepare_data

Value

a string corresponding to the jags model

Examples

#importing data
data(signature_data)
data(prior_diet_matrix)
data(LOQ)
data(prior_signature_data)
prior_delta <- data.frame(tracer=c("X15N","X13C"),mean=c(3,0),sd=c(1,1))

#check that everything is ok
mydata <- prepare_data(prior_diet_matrix,signature_data,
LOQ,prior_signature_data, prior_delta)

#build the model
mymodel <- building_model(mydata)

Irstea/escroc documentation built on June 18, 2022, 11:22 p.m.