R Language Drawing: Radar chart

Source: Internet
Author: User
Tags radar
Using the FMSB package to draw a radar chart
library("fmsb")radarfig <- rbind(rep(90, 4), rep(60, 4), c(86.17, 73.96, 82.70, 69.55))     #求平均值radarfig <- as.data.frame(radarfig)                                         #转化为data.framecolnames(radarfig) <- c("服务方式\n完备度", "在线服务\n成熟度",                          "办事指南\n准确度", "服务事项\n覆盖度")radarchart(radarfig, axistype=1, pcol=rgb(91,155,213,155,maxColorValue = 255) ,           pfcol=rgb(91,155,213,155,maxColorValue = 255) , plwd=4 ,           cglcol="black", cglty=1, axislabcol="black", caxislabels=seq(60,90,5),            cglwd=1, vlcex=0.8 )

R Language Drawing: Radar chart

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.