Skip to content
New issue

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

Add support for filters and details to init_aeExplorer(). #154

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from

Conversation

samussiah
Copy link
Contributor

@samussiah samussiah commented Feb 16, 2024

@nandriychuk - would you mind testing this out on your end? This PR passes filter columns and listing columns through to the aeExplorer widget. Here's a simple reprex:

load_all();
aeExplorer(
    filters = c(
        'Severity' = 'AESEV',
        'Relationship' = 'AEREL',
        'Serious?' = 'AESER'
    ),
    details = names(safetyData::sdtm_ae) %>%
        .[ grepl('S', .) ] %>% # columns that contain an "S"
        setNames(sub('^AE', 'Adverse Event: ', .)) # Replace prefix of "AE" with "Adverse Event: "
)

@samussiah samussiah requested a review from jwildfire February 16, 2024 15:48
@samussiah samussiah marked this pull request as draft February 16, 2024 15:48
@samussiah samussiah requested review from nandriychuk and removed request for jwildfire April 11, 2024 17:49
@samussiah samussiah marked this pull request as ready for review April 11, 2024 17:49
@samussiah
Copy link
Contributor Author

@waterhob - this branch adds the filtering functionality you described a couple months ago. Let me know if it suits your needs.

@samussiah samussiah requested a review from waterhob April 11, 2024 17:54
@waterhob
Copy link

waterhob commented Apr 12, 2024 via email

@DS54321
Copy link

DS54321 commented Nov 15, 2024

Greetings - I am interested in adding additional filters to aeExplorer. I'm unable to add filtering like I'm able to do with labs outlier explorer. Will this update be available sometime? Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support filters and details in aeExplorer.
3 participants