6.3.3 Radar Chart
1. Simple Radar Chart
import pandas as pd
df = pd.DataFrame(dict(
r=[4, 5, 2, 4, 3],
theta=['Difficulty','Execution','Landing',
'Style', 'Creativity']))
import plotly.express as px
fig = px.line_polar(df, r='r', theta='theta', line_close=True)
fig.show()

2. Multiple Trace Radar Chart


Last updated