Plot Database Spans and Soft Qualities

This example shows how to load the slabs database and plot some information from it.

../_images/00-2.png
../_images/00-1.png
from buildings_analytics.queries import plot_soft_quantities
from buildings_analytics.queries.query import plot_typical_spans
from buildings_analytics.queries.query import read_database

from buildings_analytics import TEMP

# Load the slab database
df = read_database()

# Plot typical slabs spans
plot_typical_spans(df)

# Plot soft quantities
plot_soft_quantities(df,path=TEMP+'/soft_quantities.png')