| get_result {ReactomeGSA} | R Documentation |
Retrieves a result from a ReactomeAnalysisResult object.
get_result(x, type, name)
x |
ReactomeAnalysisResult. |
type |
the type of result. Use |
name |
the name of the result. Use |
A data.frame containing the respective result.
Other ReactomeAnalysisResult functions:
names,ReactomeAnalysisResult-method,
open_reactome(),
pathways(),
plot_correlations(),
plot_gsva_heatmap(),
plot_gsva_pathway(),
plot_volcano(),
reactome_links(),
result_types()
# load an example result object library(ReactomeGSA.data) data(griss_melanoma_result) # get the available result types result_types(griss_melanoma_result) # get the dataset names names(griss_melanoma_result) # get the fold_changes for the first dataset prot_fc <- get_result(griss_melanoma_result, type = "fold_changes", name = "proteomics") head(prot_fc)