Exercise: Adding Customised Sliders
Practice with some lab exercises.
We'll cover the following...
Exercise 1
Using the Hang Seng Index dataset, create a custom date slider that has a white background and a border width of 5 pixels.
Press + to interact
hs = pd.read_csv('/usr/local/csvfiles/^HSI.csv', parse_dates=['Date'])hs.head()
Solution
-
A trace is created using the
go.Scatter()
function on line 2 withx
andy
values taken from thehs
DataFrame. Themode
parameter is set tolines
to create a line chart, and thename
parameter specifies the name of the trace for the legend. Themarker
parameter is used to set the color of the ...