load_public_dataset | R Documentation |
Loads a public dataset that was found through the
find_public_datasets
function. The dataset
is returned as a Biobase ExpressionSet object.
load_public_dataset(dataset_entry, verbose = FALSE, reactome_url = NULL)
dataset_entry |
The entry of the respective dataset as returned by
the |
verbose |
If set to |
reactome_url |
URL of the Reactome API Server. Overwrites the URL set in the 'reactome_gsa.url' option. Specific ports can be set using the standard URL specification (for example http://your.service:1234) |
The loaded data as an ExpressionSet object.
# As a first step, you need to find available datasets
available_datasets <- find_public_datasets("psoriasis tnf")
# have a quick look at the found datasets
available_datasets[, c("id", "title")]
# load the first one, use the whole row of the found datasets
# data.frame as the parameter
dataset_1 <- load_public_dataset(available_datasets[1,], verbose = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.