Skip to content

Commit

Permalink
Removed no more useful ... in list of arguments for criteria and like…
Browse files Browse the repository at this point in the history
…lihood
  • Loading branch information
sbuis committed Apr 18, 2024
1 parent ec65079 commit db5aa0c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions R/likelihoods.R
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ likelihood_log_iidn <- function(sim_list,obs_list, weight) {

#' @export
#' @rdname Likelihoods
likelihood_log_ciidn <- function(sim_list, obs_list, ...) {
likelihood_log_ciidn <- function(sim_list, obs_list) {
# return criterion type (ls, log-ls, likelihood, log-likelihood)
# if no argument given

Expand Down Expand Up @@ -126,7 +126,7 @@ likelihood_log_ciidn <- function(sim_list, obs_list, ...) {

#' @export
#' @rdname Likelihoods
likelihood_log_ciidn_corr <- function(sim_list, obs_list, ...) {
likelihood_log_ciidn_corr <- function(sim_list, obs_list) {
# return criterion type (ls, log-ls, likelihood, log-likelihood)
# if no argument given
if (!nargs()) {
Expand Down
4 changes: 2 additions & 2 deletions R/ls_criteria.R
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ NULL

#' @export
#' @rdname ls_criteria
crit_ols <- function(sim_list, obs_list, ...) {
crit_ols <- function(sim_list, obs_list) {
# return criterion type (ls, log-ls, likelihood, log-likelihood)
# if no argument given

Expand Down Expand Up @@ -163,7 +163,7 @@ crit_log_cwss <- function(sim_list, obs_list) {

#' @export
#' @rdname ls_criteria
crit_log_cwss_corr <- function(sim_list, obs_list, ...) {
crit_log_cwss_corr <- function(sim_list, obs_list) {
# return criterion type (ls, log-ls, likelihood, log-likelihood)
# if no argument given
if (!nargs()) {
Expand Down
4 changes: 2 additions & 2 deletions man/Likelihoods.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/ls_criteria.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit db5aa0c

Please sign in to comment.