## ## Similar to advanced_report.html, this is a Mako template file. ##

Hello there!

% for section in asset.Sections().assets(): ## Just like in advanced_report.html, we'll put in the section name and the Ambient_Conditions display.

${section['Name']}

${display(display=section.Ambient_Conditions(), date_range=asset.First_Week_Of_2020())}
## Now let's embed the Plots that we will be rendering in Python using matplotlib.
${plot(section.Scattermatrix(), date_range=asset.First_Week_Of_2020())}
${plot(section.Scatterplot3D(), date_range=asset.First_Week_Of_2020())}
% endfor