From 75396f4859c701d07b6fc347c27edb720d5fded5 Mon Sep 17 00:00:00 2001 From: edknock Date: Thu, 17 Oct 2024 17:44:52 +0100 Subject: [PATCH] correct typo --- R/dsl-distributions.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/dsl-distributions.R b/R/dsl-distributions.R index d8af6aae..acd4576d 100644 --- a/R/dsl-distributions.R +++ b/R/dsl-distributions.R @@ -103,7 +103,7 @@ distr_gamma_rate <- distribution( distr_gamma_scale <- distribution( name = "Gamma", - variant = "rate", + variant = "scale", density = function(x, shape, scale) { dgamma(x, shape, scale = scale, log = TRUE) },