mirror of
https://github.com/ivabus/pantry
synced 2024-11-13 03:55:18 +03:00
7 lines
79 B
Text
7 lines
79 B
Text
|
data {
|
||
|
obs <- 1
|
||
|
}
|
||
|
model {
|
||
|
parameter ~ dunif(0,1)
|
||
|
obs ~ dbern(parameter)
|
||
|
}
|