Skip to content

Commit 6fe5ab5

Browse files
committed
fix: remove population scaling from nssp
1 parent 549f7d5 commit 6fe5ab5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

R/forecasters/forecaster_baseline_linear.R

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,11 @@ forecaster_baseline_linear <- function(
155155
value = values * population / 10**5
156156
) %>%
157157
select(-population)
158+
} else {
159+
quantile_forecast %<>%
160+
mutate(
161+
value = values
162+
)
158163
}
159164
quantile_forecast %<>%
160165
mutate(

0 commit comments

Comments
 (0)