plot_clusters_all {XINA} | R Documentation |
Draw line graphs of all the proteins in the given dataset
plot_clusters_all(clustering_result, selected_condition = NULL)
clustering_result |
A list containing XINA clustering results. See xina_clustering |
selected_condition |
A condition name to draw the kinetics plot |
a list containing clustering results and pdf file containing a BIC plot in current working directory.
# load XINA example data data(xina_example) # Plot kinetics of all the proteins in Control plot_clusters_all(example_clusters, selected_condition="Control") # Plot kinetics of all the proteins in Stimulus1 plot_clusters_all(example_clusters, selected_condition="Stimulus1") # Plot kinetics of all the proteins in Stimulus2 plot_clusters_all(example_clusters, selected_condition="Stimulus2") # Plot kinetics of all the proteins in three data plot_clusters_all(example_clusters)