1

I've this df:

df<- data.frame ("var.a" = .7,
"var.b" =  3.5,
"var.c" = as.factor("e"),
"var.d" = as.factor("f1"),
"var.e" = as.integer(1),
"var.f" = as.factor("y") )

I would like to produce a radar (spider) chart like this: enter image description here

Is there any way to produce this chart through R?

In addition I would like to estimate the spider web area in percentage.

Borexino
  • 802
  • 8
  • 26
  • You might look into [ggradar](https://github.com/ricardo-bion/ggradar), though I haven't used it myself – Calum You May 04 '18 at 17:56
  • I'm not familiar with `ggradar`, however for what I have seen is not possible to plot both factors and continuous vectors – Borexino May 04 '18 at 18:09
  • I found what I want using [pyton](https://stackoverflow.com/a/24669479/3519756) or this other [example](https://datascience.stackexchange.com/a/6593). BTW I would like to have an R script – Borexino May 05 '18 at 09:04

0 Answers0