Skip to content

Commit

Permalink
Fix column name in confint output
Browse files Browse the repository at this point in the history
  • Loading branch information
Admin_mschuemi authored and Admin_mschuemi committed Jan 10, 2025
1 parent ca2c024 commit a6ebcec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/ModelFit.R
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ confint.cyclopsFit <- function(object, parm, level = 0.95, #control,
if (any(hessianDiagonal > maximumCurvature)) {
warning("Cannot estimate confidence interval for a monotonic log-likelihood function")

prof <- data.frame(covariates = savedParm,
prof <- data.frame(covariate = savedParm,
lower = rep(NA, length(parm)),
upper = rep(NA, length(parm)),
evaluations = rep(NA, length(parm)))
Expand Down

0 comments on commit a6ebcec

Please sign in to comment.