# Radar plot in Plots.jl or Makie.jl?

**URL:** https://discourse.julialang.org/t/radar-plot-in-plots-jl-or-makie-jl/88576
**Category:** Visualization
**Tags:** plotting, plots, makie
**Created:** [October 11, 2022, 1:11pm UTC](https://discourse.julialang.org/t/radar-plot-in-plots-jl-or-makie-jl/88576 "2022-10-11T13:11:36Z")
**Posts on this page:** 1
**Showing post:** 4

<div class="post-metadata">

### Author: ![rafael.guerra](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/rafael.guerra/32/216610_2.png) [@rafael.guerra](https://discourse.julialang.org/u/rafael.guerra)
#### Post date: [October 11, 2022, 10:30pm UTC](https://discourse.julialang.org/t/radar-plot-in-plots-jl-or-makie-jl/88576/4 "2022-10-11T22:30:00Z")

</div>

FWIW, find here a home-made Plots.jl solution:

```julia
using Random, Measures, Plots; gr()

# INPUT DATA:
Random.seed!(1789)
n = 8
R1, R2 = rand(n+1), rand(n+1)
R1[n+1], R2[n+1] = R1[1], R2[1]
labels = 'C' .* string.(1:n)

# PLOT:
θ = LinRange(0, 2pi, n+1)
z = 1.15*exp.(im*2π*(0:n-1)/n)
plot(θ, R1, proj=:polar, ms=3, m=:o, c=:blue, fill=(true,:blues), fa=0.4, lims=(0,1), xaxis=false, margin=5mm)
plot!(θ, R2, proj=:polar, ms=3, m=:o, c=:red, fill=(true,:reds), fa=0.4, lims=(0,1), xaxis=false)
annotate!(real.(z), imag.(z), text.(labels,12,"Computer Modern"))

```

 ![Plots_gr_radial_categorical_plots](https://global.discourse-cdn.com/julialang/original/3X/4/b/4b7a2ef2b60813c5e1df8cddc71d929d1e03a8a0.png)

---

_[View the full topic](https://discourse.julialang.org/t/radar-plot-in-plots-jl-or-makie-jl/88576)._
