Skip to content

Commit

Permalink
Merge pull request #505 from spsanderson/development
Browse files Browse the repository at this point in the history
fix from tibble::tibble() to dplyr::tibble()
  • Loading branch information
spsanderson authored May 16, 2024
2 parents 1e386ec + e05e234 commit 76b2f0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/est-param-zt-binom.R
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ util_zero_truncated_binomial_param_estimate <- function(.x, .auto_gen_empirical
mle_msg <- optim_result$message

# Create output tibble
ret <- tibble::tibble(
ret <- dplyr::tibble(
dist_type = "Zero-Truncated Binomial",
samp_size = n,
min = minx,
Expand Down
2 changes: 1 addition & 1 deletion R/est-param-ztn-binmoial.R
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ util_zero_truncated_negative_binomial_param_estimate <- function(.x, .auto_gen_e
mle_prob <- optim_result$par[2]

# Create output tibble
ret <- tibble::tibble(
ret <- dplyr::tibble(
dist_type = "Zero-Truncated Negative Binomial",
samp_size = n,
min = minx,
Expand Down

0 comments on commit 76b2f0e

Please sign in to comment.