David Holstius

Results 10 issues of David Holstius

The example given in the intro: ``` iris %>% head() %>% dmdclip() ``` results in this: ``` data.frame( Sepal.Length = c(5.1, 4.9, 4.7, 4.6, 5, 5.4), Sepal.Width = c(3.5, 3,...

If this is a value in `ggplot2`, I'm happy to file it there. Thanks for a wonderful package! ## Summary :white_check_mark: Rendering finite values in a semi-transparent manner works by...

Under "Keeps factor by default levels now", the second chart shows 100% thing1. It seems like it should show 100% thing2, just like the chart immediately above. That's what is...

`drop_exists()` is case-sensitive. This means that it will incorrectly return `FALSE` in the following scenario: 1. Alice creates (in her Dropbox) a file named `/Foo/bar/baz.txt`. 2. Alice shares `/Foo/` with...

The default `digits = 5` in the S4 method for `toJSON` (for `numeric`) is pretty low. No doubt this keeps default output to a healthy size, but it's insufficient in...

Adds support for quantile regression, though probably not in the most efficient way. There's only one line in pred_grid.rq that differs from pred_grid.lm, but I'm not sure how best to...

enhancement

By "overlay" I mean a layer based on an auxiliary dataset. Simple example using `mtcars`: ``` library(ggvis) my_vis % mutate(cyl = factor(cyl)) %>% group_by(cyl) %>% layer_lines(stroke = ~cyl) # Some...

## Summary **Update**: This error does not occur with `cmdstan` v2.33.1. Running `cmdstan` v2.34.1 (23 January 2024) and `cmdstanr` [v0.7.1](https://github.com/stan-dev/cmdstanr/tree/v0.7.1). Reprex follows. Attempting to fit a trivial model: ```r library(brms)...

bug

## Summary - Thanks for an amazing package! - `ppc_stat_grouped()` works with a multivariate model fit via `brms::brm()` :white_check_mark: - `ppc_stat_grouped()` fails with a multivariate model when `subset()` is used...