Alessandro Gasparini

Results 43 comments of Alessandro Gasparini

Hi all, I see the same issue with a simple `mutate()` call, where attributes actually get dropped; see for reference: https://github.com/ellessenne/comorbidity/issues/51 Would this be fixed by https://github.com/tidyverse/dplyr/pull/6102? Thanks! Alessandro

Hi all, I also just experienced the same issue and solved it by following David's comment here: https://github.com/tidymodels/hardhat/issues/130#issuecomment-622438758

Hi, `x1` here should not have any name, as it's just the score column? The example code above does not add the score to `x`: ``` r library(comorbidity) #> This...

Thanks, this seems to be an issue related to {dplyr}, as the following does not drop the attributes: ``` r library(comorbidity) set.seed(1) x [7] "copd" "rheumd" "pud" "mld" "diab" "diabwc"...

Hi @salmasian, thanks for the heads-up. I have been discussing with @jackwasey about _merging_ `comorbidity` and `icd` to drive development together and we have several ideas on how to go...

Thanks, I might release a new version soon with minor (albeit breaking) changes, see #32. I have been thinking about how to implement the PR from @fiksdala without creating a...

Yep - I already have an idea on how to implement it, with the main goal to provide a "custom" score option to the end user.

Hi! This issue is unrelated to that, actually (it has to do with the internal implementation of scoring algorithms). Anyway, you can solve the multiple columns issue by reshaping long...

Hi @pierre-alain-b, thanks for the feedback! I am a bit hesitant to add these codes to the scoring algorithm - after all, they did not exist at the time and...

While I agree with your comment on Dr. Charlson intentions, this could lead us down the rabbit hole - what about other comorbidities? Are we re-inventing comorbidity scores? It's a...