A Brief Look at Plotly
Recently, I worked on a project where one of the main goals was to create a series of highly interactive graphs in Python. Since matplotlib, which is my usual go-to for graphing, has limited capabilities in this regard, I decided that I would need to try a different library in order to get the results that I wanted. The solution I ended up using was the Plotly graphing library. I was so impressed with my results and the capabilities of Plotly that I’ve decided this blog post will be dedicated to explaining a bit about the library and looking at some of its more interesting features. First, I’ll give a broad overview of Plotly and how it is structured. Like many other Python modules, the main purpose of Plotly is to create, manipulate, and render graphical figures such as charts, plots, diagrams and even maps. These figures are rendered using the Plotly.js JavaScript library and can be represented in Python as either dictionaries or as instances ...