panel_st_agg_node {starvz}R Documentation

Create a space-time visualization with node aggregation.

Description

Use any state trace data to plot the task computations by Node over the execution time with Gantt Chart. This function aggregate states within the same resource type.

Usage

panel_st_agg_node(
  data,
  x_start = data$config$limits$start,
  x_end = data$config$limits$end,
  step = data$config$st$aggregation$step,
  legend = data$config$st$legend,
  selected_nodes = data$config$selected_nodes
)

Arguments

data

starvz_data with trace data

x_start

X-axis start value

x_end

X-axis end value

step

time-step

legend

option to activate legend

selected_nodes

select only some nodes in some plots

Value

A ggplot object

Examples


panel_st_agg_node(data = starvz_sample_lu)


[Package starvz version 0.8.0 Index]