Re: [R] Tools to modify highlighted areas in pdf documents?

2024-06-03 Thread Leo Mada via R-help
Dear Ivan, Thank you very much for the hint. I have started to test it. - it offers more colours and types of highlighting than MS Edge; - it seems to have better word-boundary detection than MS Edge (but I haven't tested all the cases yet); There are some nit-picks: - I wish it had a better d

[R] [R-pkgs] QGA 1.0 is released

2024-06-03 Thread Giulio Barcaroli
Dear R users, I am pleased to announce that QGA 1.0 is now available on CRAN. QGA implements the Quantum Genetic Algorithm, as proposed by Han and Kim in 2000, and is an R implementation derived from the Python one by Lahoz-Beltra in 2016. Under this approach, each solution is represented as a

Re: [R] R code for overlapping variables -- count

2024-06-03 Thread Ebert,Timothy Aaron
One could make dummy variables if the existing variables are otherwise. If Female is a variable that includes other options (no-response, non-binary, ...) then recode it using dummy.female and the others would be similarly named. -Original Message- From: R-help On Behalf Of peter dalgaa

Re: [R] R code for overlapping variables -- count

2024-06-03 Thread peter dalgaard
If they are binary (0/1 dummies), can't you just "&" them as in table(Female & USA & MidIncome) (or sum() if you don't care about the number of 0s) -pd > On 2 Jun 2024, at 00:31 , Shadee Ashtari wrote: > > Hi! > > I am trying to find the code for how to get counts for intersectional > varia