resetSelect {HCAExplorer} | R Documentation |
This function will reset the selected slot of an HCAExplorer object to its default selection.
## S4 method for signature 'HCAExplorer' resetSelect(x)
x |
An HCAExplorer Object |
An HCAExplorer object with its selected slot returned to its default value.
HCAExplorer
for the HCAExplorer class,
select
for how to make the initial selection.
## Initiate an HCAExplorer Object. x <- HCAExplorer() ## View object to decide which colums to select. x ## Decide to select columns 'projcts.projectTitle' and 'samples.organ'. x <- x %>% select('project.projectTitle', 'samples.organ') x ## Revert selec() with resetSelect() x <- resetSelect(x) x