From bd6bb5f18b2b022025d886aae2299a4b4d614bcf Mon Sep 17 00:00:00 2001 From: "Aaron A. King" Date: Mon, 26 Jun 2023 20:34:35 -0400 Subject: [PATCH] fix bug --- DESCRIPTION | 2 +- R/eff_sample_size.R | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 520a5e49..1996e6ee 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: pomp Type: Package Title: Statistical Inference for Partially Observed Markov Processes -Version: 5.2.4.2 +Version: 5.2.4.3 Date: 2023-06-26 Authors@R: c(person(given=c("Aaron","A."),family="King",role=c("aut","cre"),email="kingaa@umich.edu",comment=c(ORCID="0000-0001-6159-3207")), person(given=c("Edward","L."),family="Ionides",role="aut",comment=c(ORCID="0000-0002-4190-0174")) , diff --git a/R/eff_sample_size.R b/R/eff_sample_size.R index e2ac30f9..c962fa3e 100644 --- a/R/eff_sample_size.R +++ b/R/eff_sample_size.R @@ -103,7 +103,7 @@ setMethod( definition=function (object, ..., format = c("numeric", "data.frame")) { format <- match.arg(format) - x <- lapply(object,cond_logLik,format=format) + x <- lapply(object,eff_sample_size,format=format) if (format == "data.frame") { x <- rbind_fill(x,.id=".id") }