In [4]:
require(ggplot2)
require(reshape2)
The following likelihood comparison shows the likelihood of the removal probability paramter $r$ calculated by the PF(SSA), PF(TL), and the analytical result computed by the SA package.
Parameter values used in this comparison:
In [97]:
df <- read.table("BD_DensityMap_PsiNoRemove.log", header=T)
df <- melt(df, measure.vars = c("density","densitySA","densityTL"))
ggplot(df) + geom_line(aes(r, value, col=variable)) +
geom_point(aes(r, value, col=variable))