antonymilne's picture
Add pycafe link and plotly code (#1)
b699ae9 verified
raw
history blame
254 Bytes
import pandas as pd
import vizro.plotly.express as px
funnel_data = pd.DataFrame(
{"Stage": ["Leads", "Sales calls", "Follow-up", "Conversion", "Sales"], "Value": [10, 7, 4, 2, 1]}
)
fig = px.funnel_area(funnel_data, names="Stage", values="Value")