Fumagalli_Motta_Tarantino_2020.Visualizations

This submodule provides the implementations for the visualization of the models in Fumagalli_Motta_Tarantino_2020.Models.

Basic Usage

import Fumagalli_Motta_Tarantino_2020 as FMT20


model = FMT20.OptimalMergerPolicy()

# see list below for available visualizations
visualizer = FMT20.Overview(model)

# show the plot in a canvas
visualizer.show()

# exceptional use for Fumagalli_Motta_Tarantino_2020.Models.BaseExtended.PerfectInformation
model = FMT20.PerfectInformation()

# for the outcome for different merger policies over a range of assets
visualizer_perfect_information = FMT20.MergerPoliciesAssetRangePerfectInformation(model)
visualizer_perfect_information.show()

Available Visualizations

The following models are available:

1"""
2.. include:: README.md
3"""
4
5from Fumagalli_Motta_Tarantino_2020.Visualizations.Visualize import *
6from Fumagalli_Motta_Tarantino_2020.Visualizations.VisualizeRanges import *