We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ConceptSet
Currently, adding concept sets is quite hacky:
from eds_scikit.biology import ConceptsSet protein_blood = ConceptsSet("Protein_Blood_Quantitative") protein_urine = ConceptsSet("Protein_Urine_Quantitative") protein = ConceptsSet( name="Protein_Quantitative", concept_codes=protein_blood.concept_codes + protein_urine.concept_codes, )
It would be handier to have the following:
protein = protein_blood + protein_urine
The concept_name could be generic like "addition_1" since it doesn't seem to be used except in the bioclean table.
concept_name
"addition_1"
bioclean
We would need to add to ConceptSet:
__add__
__sub__
__eq__
The text was updated successfully, but these errors were encountered:
Yep good idea !
Sorry, something went wrong.
No branches or pull requests
Description
Currently, adding concept sets is quite hacky:
It would be handier to have the following:
The
concept_name
could be generic like"addition_1"
since it doesn't seem to be used except in thebioclean
table.We would need to add to
ConceptSet
:__add__
__sub__
__eq__
The text was updated successfully, but these errors were encountered: