diff --git a/R/InsuranceParameters.R b/R/InsuranceParameters.R index 5962a9c1bb94cf2d47d336c77090d5f8921c7691..02291f00bc5d93b03665d30fd3052e8d7bb713ed 100644 --- a/R/InsuranceParameters.R +++ b/R/InsuranceParameters.R @@ -168,6 +168,7 @@ costs.baseAlpha = function(alpha) { #' #' Returns a data.frame with columns #' +#' @param costs The cost structure to be displayed in a concise table style. #' @export costsDisplayTable = function(costs) { costtable = as.data.frame.table(setInsuranceValuesLabels(costs) ) @@ -617,7 +618,7 @@ InsuranceContract.ParameterStructure$Loadings["premiumFrequencyLoading"] = list( #' structure is given, an empty (i.e. all NULL entries) structure is used. #' #' @param params Initial values of the insurance contract parameters. (default: empty parameter structure) -#' @param costs,... Values for any of the entries in the insurance contract +#' @param costs,minCosts,... Values for any of the entries in the insurance contract #' parameter structure. These values take precedence over the #' initial parameters provided in \code{params}. #' diff --git a/man/InsuranceContract.ParametersFill.Rd b/man/InsuranceContract.ParametersFill.Rd index e3fcb09ced3ba2b5012263c6ec613db4af71ba4e..118a423d283f69f8a21b6c4ad459582f864da5ad 100644 --- a/man/InsuranceContract.ParametersFill.Rd +++ b/man/InsuranceContract.ParametersFill.Rd @@ -14,7 +14,7 @@ InsuranceContract.ParametersFill( \arguments{ \item{params}{Initial values of the insurance contract parameters. (default: empty parameter structure)} -\item{costs, ...}{Values for any of the entries in the insurance contract +\item{costs, minCosts, ...}{Values for any of the entries in the insurance contract parameter structure. These values take precedence over the initial parameters provided in \code{params}.} } diff --git a/man/costsDisplayTable.Rd b/man/costsDisplayTable.Rd index 784a6be7d4030c5bbcf0737f17b5a976f1b79707..684111ca4d656de06a52e8ea41cbaf1e0b0e88cb 100644 --- a/man/costsDisplayTable.Rd +++ b/man/costsDisplayTable.Rd @@ -6,6 +6,9 @@ \usage{ costsDisplayTable(costs) } +\arguments{ +\item{costs}{The cost structure to be displayed in a concise table style.} +} \description{ Returns a data.frame with columns }