panel_st_agg_static {starvz} | R Documentation |
Create a space-time visualization with static aggregation.
Description
Use any state trace data to plot the task computations by ResourceId over the execution time with Gantt Chart. This function aggregate states with a static/user-defined time-step.
Usage
panel_st_agg_static(
data = NULL,
runtime = FALSE,
x_start = data$config$limits$start,
x_end = data$config$limits$end,
expand_x = data$config$expand,
expand_y = data$config$st$expand,
outliers = data$config$st$outliers,
step = data$config$st$aggregation$step
)
Arguments
data |
starvz_data with trace data |
runtime |
if this is runtime data |
x_start |
X-axis start value |
x_end |
X-axis end value |
expand_x |
expand size for scale_x_continuous padding |
expand_y |
expand size for scale_y_continuous padding |
outliers |
print outliers on top |
step |
time-step |
Value
A ggplot object
Examples
panel_st_agg_static(data = starvz_sample_lu)
[Package starvz version 0.8.0 Index]