Radar

Radar charts (also known as spider charts, polar charts, web charts, or star plots) are a way to visualize multivariate data. They are used to plot one or more groups of values over multiple common variables.

The Method To Use

The method is s.plt.radar()

It must contain the following input variables:

order: int 
names: str
data: Union[str, DataFrame, List[Dict]]

And accepts the following input variable as optional:

values: Optional[List[str]]
max_field: Optional[str] 
fill_area: bool
title: Optional[str] 
rows_size: Optional[int]
cols_size: Optional[int] 
padding: Optional[List[int]]
option_modifications: Optional[Dict]

Examples

1. Default Configuration

The radar in the default configuration.

2. Customization And Context

The radar chart is fully customized. It received a title, note the space before the component using padding='0,0,0,1', and size with rows_size=3, cols_size=8.

Changing the Menu Path The menu_path can be modified.

Using the Grid

It is possible to use any number of rows.

Last updated

Was this helpful?