Description Usage Arguments Value Examples
View source: R/create_filtered_plot.R
create_filtered_plot generates a scatter plot of the output of the calculate_kegg function with passing a specific filter
1 | create_filtered_plot(dataset,filter_name,filter_value)
|
dataset |
The output dataset of the calculate_kegg function |
filter_name |
a string of one of the following
filters can be used: |
filter_value |
A string starts by <,>,==,<= or >= then the values for filtering |
returns a plot.
1 2 3 4 5 | a <- list_species("arachis")
b <- grep_datasets(c("adu","aip"))
deg_list <- as.matrix(b[b$kegg_pathways=='00061',1])[,1]
c <- calculate_kegg(b,deg_list)
create_filtered_plot(c,"deg_gene_numbers",">0")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.