December 2015
Beginner to intermediate
202 pages
4h
English
In this recipe, we'll be building on previous recipes, and you'll learn how to create and save your plots to be used in your Flask business intelligence dashboard. We're adding the ability to automatically run the analysis created in IPython Notebook, and then save the generated plots for use in our dashboard.
import pandas as pd
import numpy as np
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as pltaccidents_data_file = '/Users/robertdempsey/Dropbox/private/Python Business Intelligence Cookbook/Data/Stats19-Data1979-2004/Accidents7904.csv' ...
Read now
Unlock full access