Kevin Wright
Kevin Wright
I sorta understand the point of view about ``` sum(NA, na.rm=TRUE) ```` But suppose x is a vector of monthly sales per seller. If a seller is not on the...
FWIW, I'm not sure that 13 is the default in base R. I'm running tests locally (Windows 10, R 4.1.0) and getting the full output of some print() statements. But...
It's not quite that simple, because the two 1-D palettes have to be blended together for a 2-D palette. Here's a blog post that talks about creating bivariate palettes: https://www.datalorax.com/post/creating-bivariate-color-palettes/...
I think I had decided not to include these palettes because they were so similar to other palettes and I tried not to include too many palettes because it increases...
The intuitive interpretation is that negative correlation is bad (hence red) while positive correlation is good (some would use green, but blue is colorblind safe). (Think about levelplots with bad/good...
Not so simple.
Thanks for you comments. I have not used GitHub Actions, so I may need help with setting it up, so a pull request would be nice. ZScaler security software is...
Except, now that I think about it, there's probably 20+ examples that use `asreml`, which is commercial software. Might be some other non-CRAN packages too. I wrap most of the...
I think a better check that is not specific to GitHub is this: ``` if( require("asreml", quietly=TRUE) ) { # fit models, etc } ``` This should enable anyone to...