radar

radar(cmd0="", arg1=nothing; axeslimts=Float64[], annotall=false, axeslabels=String[], kwargs...)

Radar plots are a useful way for seeing which variables have similar values or if there are outliers amongst each variable. By default we expect a matrix, or a GMTdatset (or a vector of them) with normalized values. This is so because a radar plot has multiple axis that each have different limits. So the options are to pass normalized variables or set each axis limits via the axeslimts option.

radar(A, …) plots the elements in the rows of A if it is a mtrix creating a polygon per row, or just one polygon if A is a vector.
This module is a subset of plot to make it simpler to draw stair plots. So not all (fine) controlling parameters are not listed here. For the finest control, user should consult the plot module.
Parameters

By default the polygons are not filled but that is often not so nice. To fill with the default cyclic color use just fill=true. Other options are to use:

Examples

Create a

using GMT

radar([0.5 0.5 0.6 0.9 0.77; 0.6 0.5 0.8 0.2 0.9], show=true, marker=:circ, fill=true)

Plot

radar([10.5 20.5 30.6 40.9 46], axeslimts=[15, 25, 50, 90, 50], annotall=true, marker=:circ, fill=true, 
      labels=["Spoons","Forks","Knifes","Dishes","Oranges"], show=1)

Source Code

This function has multiple methods:

See also

Alphabetical Function List