Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 580 Bytes

README.md

File metadata and controls

25 lines (15 loc) · 580 Bytes

TimeStructPlotting

Overview

This package provides functions for visualising time structures from the TimeStruct.jl package. The plots are created using the Luxor package and can be displayed or stored in various formats.

Usage

The example below shows how one can visualise a time structures with two levels.

using TimeStruct
using TimeStructPlotting

ts = TwoLevel(3, 52, OperationalScenarios(4, SimpleTimes(5,1)))

cost = StrategicProfile([4, 5, 7])

draw(ts; profile = cost, layout=:top)

This will produce the following figure