Vincent Dorie
Vincent Dorie
I think the weights still aren't correct, at least for the Gaussian case. Ignoring the link and calling $w$ the weights vector, the weighted likelihood adds to `target`: ``` summands...
The easiest thing to do is to install the latest `dbarts` off of CRAN or github and then install `treatSens` master. If you want to use the archived version (which...
Howdy, Not at the moment, at least not without writing your own sampler. The pieces are all there they just have to be put together. I can go into some...
The full random effect varying intercept/varying slope Stan package is actually [implemented](https://github.com/vdorie/stan4bart) and is (slowly) on its way to CRAN. It doesn't yet allow you to have more than one...
Well, that was a silly omission on my part. `z` wasn't being added to the non-parametric formula for stan4bart models, so that the treatment was constant. Since that's probably a...
Technically, yes. It's a bit messy, but it would look something like: ```r # have to do one chain b/c response object of sampler is shared across all chains #...
Thanks for pointing this out, and sorry that I missed this earlier. I'm a little baffled that anyone is using this repo since I've never published anything on it or...
This package was never submitted to CRAN. To install it, you can use remotes or devtools, or follow the instructions on the repo. On Wed, Nov 1, 2023 at 9:07...
Thanks for pointing this out. Technically, with one-hot encoding for factor variables the trees can correctly sort observations for new levels. I'll look into enabling it. The only way in...
Predictions for binary `y` are the probit scale, and need to be transformed back into probabilities using `pnorm`. However, I just noticed a bug with predict for binary outcomes that...