In [6]:
#Import the needed Packages
import pandas as pd
import numpy as np
# Import Plotly
from plotly import __version__
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
from plotly.graph_objs import *
import plotly
plotly.offline.init_notebook_mode()
# Define the TUBS Colorscale for 10 Colors
# TUBS Rot, Gelb, Orange, Hellgrün, Grün, Dunkelgrün, Hellblau, Blau, Dunkelblau, Violett
TUBScolorscale=['rgba(190,30,60,0.9)',
'rgba(255,200,42,0.9)',
'rgba(225,109,0,0.9)',
'rgba(172,193,58,0.9)',
'rgba(109,131,0,0.9)',
'rgba(0,83,74,0.9)',
'rgba(102,180,211,0.9)',
'rgba(0,112,155,0.9)',
'rgba(0,63,87,0.9)',
'rgba(138,48,127,0.9)']
# Define the height & width of the plots
height = 400 # approx 11 cm
width = 600 # approx 15 cm
# Define the Font size
FontSize = 12