Description Usage Arguments Value Examples
View source: R/filter-utilities.R
Select fields from a HCABrowser object
1 2 | ## S3 method for class 'HCABrowser'
select(.data, ..., .output_format = c("raw", "summary"))
|
.data |
an HCABrowser object to perform a selection on |
... |
further argument to be tranlated into an expression to select from. These arguments can be passed in two ways, either as a character vector or as a series of expressions that are the fields that are to be selected seperated by commas. |
.output_format |
unused. |
a HCABrowser object containing the results of the selection.
1 2 3 4 5 6 | hca <- HCABrowser()
hca2 <- hca %>% select('paired_end')
hca2
hca3 <- hca %>% select(c('organ.text', 'paired_end'))
hca3
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.