Plots heatmap, pca, umap of the data simulated using sRACIPE
sracipePlotData( .object, plotToFile = FALSE, nClusters = 2, heatmapPlot = TRUE, pcaPlot = TRUE, umapPlot = TRUE, networkPlot = TRUE, clustMethod = "ward.D2", col = col, distType = "euclidean", assignedClusters = NULL, corMethod = "spearman", ... ) # S4 method for RacipeSE sracipePlotData( .object, plotToFile = FALSE, nClusters = 2, heatmapPlot = TRUE, pcaPlot = TRUE, umapPlot = TRUE, networkPlot = TRUE, clustMethod = "ward.D2", col = col, distType = "euclidean", assignedClusters = NULL, corMethod = "spearman", ... )
.object | List A list returned by |
---|---|
plotToFile | (optional) logical. Default |
nClusters | (optional) Integer. Default 2. Expected number of clusters
in the simulated data. Hierarchical clustering will be used to cluster the
data and the the models will be colored in UMAP and PCA plots according to
these clustering results. The clusters can be also supplied using
|
heatmapPlot | (optional) logical. Default |
pcaPlot | (optional) logical. Default |
umapPlot | (optional) logical. Default |
networkPlot | (optional) logical. Default |
clustMethod | (optional) character. Default |
col | (optional) Color palette |
distType | (optional) Distance type. Used only if specified
explicitly. Otherwise, 1-cor is used. See |
assignedClusters | vector integer or character. Default NULL. Cluster assignment of models. |
corMethod | (optional) character. Default |
... | Other arguments |
RacipeSE
object
sracipeSimulate
, sracipeKnockDown
,
sracipeOverExp
, sracipePlotData
,
data("demoCircuit") if (FALSE) { rSet <- sRACIPE::sracipeSimulate(circuit = demoCircuit, numModels = 20, integrateStepSize = 0.1, simulationTime = 30) rSet <- sracipePlotData(rSet) }