Skip to content

Commit

Permalink
Fixes #201
Browse files Browse the repository at this point in the history
  • Loading branch information
spsanderson committed Jun 7, 2022
1 parent 2670df1 commit 8def42e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ None
2. Fix #187 - Add functions `ci_lo()` and `ci_hi()`
3. Fix #189 - Add function `tidy_bootstrap()`
4. Fix #190 - Add function `bootstrap_unnest_tbl()`
5. Fix

## Minor Fixes and Improvements
1. Fix #176 - Update `_autoplot` functions to include cumulative mean MCMC chart
Expand All @@ -18,6 +19,8 @@ functions.
3. Fix #183 - `tidy_empirical()` is now again plotted by `_autoplot` functions.
4. Fix #188 - Add the `.num_sims` parameter to `tidy_empirical()`
5. Fix #196 - Add `ci_lo()` and `ci_hi()` to all stats tbl functions.
6. Fix #201 - Correct attribute of `distribution_family_type` to `discrete` for
`tidy_geometric()`

# TidyDensity 1.1.0

Expand Down
2 changes: 1 addition & 1 deletion R/random-tidy-geom.R
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ tidy_geometric <- function(.n = 50, .prob = 1, .num_sims = 1) {
param_grid <- dplyr::tibble(.prob)

# Attach descriptive attributes to tibble
attr(df, "distribution_family_type") <- "continuous"
attr(df, "distribution_family_type") <- "discrete"
attr(df, ".prob") <- .prob
attr(df, ".n") <- .n
attr(df, ".num_sims") <- .num_sims
Expand Down

0 comments on commit 8def42e

Please sign in to comment.