I created a radar chart using the function of “radarchart” from the “fmsb” package in R software.
The matrix I am using is as follows:
x<-c(c(rep(4.5,7),c(rep(0,7)), 3.34, 3.28, 1.37, 1.12, 3.52, 4.07, 3.66));
a<-as.data.frame(matrix(x,nrow=3, ncol=7,byrow=T))
radarchart(a,axistype=4,seg=3,cglty=3,pty=32,cglcol=1,plwd=3,pcol=1,axislabcol=1)
I would like to show the range of c(0,5) on the axis instead of c(0,100) or c(0,1).
I really appreciate it if any body can guide me.
By using a rather quick tweak,
radarchartnow has an additional argument which allows you to manually specify the numbers on the axes:The updated source code, my additions are marked by comments: