I can't imagine wanting to give that up!
I can't imagine wanting to give that up!
For both model options, you could go either via the Bayesian route or the Frequentist one in terms of R implementation.
For both model options, you could go either via the Bayesian route or the Frequentist one in terms of R implementation.
If yes, one option would be to use a ZOIB model (zero-and-one-inflated beta regression model).
In which case, you would have to pay attention to how the sub-models making up the ZOIB are parametrized.
If yes, one option would be to use a ZOIB model (zero-and-one-inflated beta regression model).
In which case, you would have to pay attention to how the sub-models making up the ZOIB are parametrized.
He shared the clunky ChatGPT solution which didn’t even work as advertised. 🤮
The solution provided by my brain: 2 lines of elegant code. 💪
He shared the clunky ChatGPT solution which didn’t even work as advertised. 🤮
The solution provided by my brain: 2 lines of elegant code. 💪
filter(col1 != “a” , col2 != “b”)
filter(col1 != “a” , col2 != “b”)
So filter(col1 == “a” & col2 == “b”)
can be specified as:
filter(col1 == “a” , col2 == “b”)
So filter(col1 == “a” & col2 == “b”)
can be specified as:
filter(col1 == “a” , col2 == “b”)