| plotDynamic {CellTrails} | R Documentation |
Shows dynamics of one or multiple features along a given trail
plotDynamic(sce, feature_name, trail_name)
sce |
A |
feature_name |
Name of one or multiple features |
trail_name |
Name of trail |
An error is thrown if the trail_name or feature_name are
unknown. The function is case-sensitiv. All available trails can be
listed by trailNames, all features with featureNames.
A ggplot object
Daniel C. Ellwanger
addTrail trailNames featureNames
# Example data
data(exSCE)
# Plot dynamic of feature_10
plotDynamic(exSCE, trail_name="Tr1", feature_name="feature_1")
# Plot dynamic of feature_1 and feature_10
plotDynamic(exSCE, trail_name="Tr1",
feature_name=c("feature_1", "feature_10"))