Plotly Flashcards
What do you need to import?
import plotly.graph_objs as go import chart_studio import chart_studio.plotly as py import plotly.offline as pyo from plotly import tools
How do you set credentials?
chart_studio.tools.set_credentials_file(username = ‘’, api_key = ‘’)
How do you get the notebook to show visualisations within the notebook?
init_notebook_mode(connected= True)
What do you need to import to work with plotly offline?
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
How do you generate a plot?
iplot(list or dictionary)
How do you generate a scatter plot?
trace = go.Scatter(
x = example_x,
y = example_y,
mode = ‘markers’)
z = [trace]
iplot(z)
How do you plot a pie chart?
fruit = ['apple', 'banana', 'cherry'] cost = [5,3,2]
trace = go.Pie(
labels = fruit,
values = cost)
z = [trace]
iplot(z)
How do you get a tooltip on a pie chart?
hoverinfo = ‘label’
How do you affect the data labels in a pie charts
textinfo = ‘label’
What are the different options in hover and text info?
‘label+value+percent’
What is the code to change the colours in a pie chart?
marker = dict(colors = z)
What mode do you need to set to get a scatter to not have a line?
mode = ‘markers’
What are the constituent parts of a graph?
trace (aka the data)
the layout
the figure
How do you code the layout?
layout = go.Layout()
How do you code the figure?
figure = go.Figure(data = [], layout = )
How do you plot a figure?
iplot(figure, filename = ‘test’)
What can you use within go.Layout?
title =
showlegend =
How do you generate a bar char?
go.Bar(x = , y = )
Can you have multiple traces in a chart?
Yes - within go.Figure pass a list
go.Figure(data = [data1,data2])
How do you get a grouped bar chart?
go.Layout(barmode = ‘group’
How do you plot a 3d scatter?
trace1 = go.Scatter3d()
How do you change what the scatter points look like?
marker = dict( size = 12, color = z, colorscale = 'Viridis', opacity = 0.8)
How do you change the margins?
go.Layout(margin = dict(l=0,r=0,t=0,b=0)
showlegend or show_legend?
showlegend
barmode = ‘group’ or barmode = ‘grouped’
barmode = ‘group’
How do you name a legend?
In trace, name = ‘’
How do you get a graph to go to chart studio
py.iplot() but you must have imported chart.studio.plotly as py
How do you change the background color?
plot_bgcolor = ‘white’
If you want to change the colour of the line in the scatter what do you use?
trace1 = go.Scatter(x = df1[‘date’], y = df1[‘high’], line = dict(color = ‘red’), name = ‘high’)
When in atom, iplot or plot?
plot
How do you change the settings of axis titles
In layout; xaxis = dict(title = ‘x’)
How do you change the shape in a scatter?
Within marker dictionary; symbol =
How do you get a line chart?
go.Scatter(mode = ‘lines’)
What are the options in a line chart?
lines
markers
lines+markers
How do you get a stacked barchart?
In layout, barmode = ‘stack’
How do you change the orientation of a bar char to be horizontal?
within go.Bar orientation = ‘h’
How do you generate multiple traces without writing it all out?
list = ['Strongly Agree', 'Somewhat Agree', 'Neutral', 'Somewhat Disagree','Strongly Disagree'] data = [] for x in list: trace = go.Bar( x = df1.index, y = df1[x], name = x ) data.append(trace)
How do you get a bubble chart?
go.Scatter(marker = dict(size = df1[‘cylinder’]))
How do you adjust the size of the bubble?
Multiply / divide the values to get to a sensible number
How do you change what what the hover contains
within go.Scatter(text = df[‘name’])
How do you change the colour within a bubble chart?
marker = dict(color = df[‘cylinder’])
How do you add a key to a bubble chart
marker = dict(showscale = True)
How do you change which data point gets selected?
Within layout hovermode = ‘closest’
How do you generate a boxplot?
go.Box()
How do you mark every point on a boxplot?
go.Box(boxpoints = ‘all’)
How do you space out the boxpoints to make it clearer?
go.Box(jitter = 0.3)
How do you determine where the boxpoints sit on the graph?
go.Box(pointpos=0)
Positive is to the right, negative is to the left
How do you show outliers in a boxplot?
go.Box(boxpoints = ‘outliers’)
How do you do a histogram?
go.Histogram(x = df1[‘x’], xbins = dict(start = , end =, size = ))
How do you set histogram bins?
xbins = dict(start = , end =, size = )
How do you do a distributino plot?
fig = ff.create_distplot(hist_data, group_labels, bin_size = [])
What do you need to import for a distribution plot?
import plotly.figure_factory as ff
Can you have multiple series for distplot?
Yes - add them as different items within a list
What is the code for a heatmap?
go.Heatmap(x = , y=, z= , colorscale = )
To add the color for a heatmap (z=) what is the format?
A python list
How do you make a python list for the colour of a heatmap?
df[‘x’]. values.tolist()
How do you set the limits of the colour scale
go.Heatmap(x =, y=, z=, colourscale =, zmin = , zmax = )
How do you create subplots?
fig = tools.make_subplots(rows = , cols =, subplot_titles=[], shared_yaxes = True)
Once you’ve created subplot, how do you add the data?
fig. append_trace(trace1,1,1)
fig. append_trace(trace2,1,2)
When using subplots, do you create the trace and figure in the normal way?
No you create the figure then append the data
When using subplot, do you have to tell plotly where to put it?
Yes and index starts at 1