Data Visualization - Plotly and Cufflinks
Plotly is a library that allows you to create interactive plots that you can use in dashboards or websites (you can save them as html files or static images). Cufflinks allows us to call plotly plots from pandas dataframes, so provides the link between pandas and plotly.
Installing Plotly and cufflinks
It is likely you will need to install the plotly and cufflinks packages. A quick online search will show you how to do this for your system.
from plotly import __version__
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
print(__version__) # requires version >= 1.9.0
Make sure you are running a version that is at least 1.9.0.
Examples