Here's my data. There are additional columns with data, but they are not included in the example.
| pain | fever | fatigue | headache |
|---|---|---|---|
| 23.4 | 17.2 | 45.6 | 32.9 |
library(fmsb)
radarchart(diary_aes_count2[,c(3:17)],
maxmin = F,
caxislabels = c(0, 15, 30, 45, 60),
cglcol = "grey",
vlcex = 60, cglty = 1,
cglwd = 0.5, axislabcol = "grey",
pcol = "black", plwd = 1, plty = 1)
My output is:
NA
[DATA NOT ENOUGH] at 3
but multiple times over and a large black square.
Am I using the function incorrectly or is dataset constructed wrong?