Description Usage Arguments Value See Also Examples
This function will reset the selected slot of an HCAExplorer object to its default selection.
1 2 | ## 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.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
## 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
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.