数学建模--Radar图绘制

1.Radar图简介

   最近在数学建模中碰见需要绘制Radar图(雷达图)的情况来具体分析样本的各个特征之间的得分与优劣关系,这样的情况比较符合雷达图的使用场景,一般来说,雷达图适用于展示多个维度的数据,并在一个平面上直观地呈现出不同维度的变化趋势,比较适用的场合如下:

    ∙ \bullet 综合评价: 雷达图是理想的工具,能够直观展示多个评价指标的得分,为综合评估提供清晰的整体表现概览。

    ∙ \bullet SWOT分析: 通过SWOT分析,雷达图展示了组织或项目在各方面的优势、劣势、机会和威胁,为战略决策提供直观支持。

    ∙ \bullet 个体特征对比: 通过雷达图,我们可以比较不同个体在各个特征上的差异,无论是个人技能评估还是产品性能对比,一目了然。

2.Radar图绘图案例:单样本图绘制

import numpy as np
import matplotlib.pyplot as plt
import matplotlib
import warnings
warnings.filterwarnings("ignore")
matplotlib.rcParams['font.family'] = 'serif'
matplotlib.rcParams['font.serif'] = 'Times New Roman'
#需要评价的特征名称
labels = np.array(['Comprehensive', 'Education', 'Professional Title', 'Teaching', 'Training', 'Research'])
labels = np.array(['A1', 'A2', 'A3', 'A4', 'A5', 'A6'])
#需要评价的特征的数量
nAttr = len(labels)
#数据/得分情况
data = np.array([8, 5, 8, 9, 8, 6])
#计算角度360/n
angels = np.linspace(0, 2*np.pi, nAttr, endpoint=False)
#创建数据闭环效果
data = np.concatenate((data, [data[0]]))  
angels = np.concatenate((angels, [angels[0]]))#可视化绘图
fig = plt.figure(facecolor='white')
ax = plt.subplot(111, polar=True)ax.set_ylim(0, 10)
#绘制线条
ax.plot(angels, data, 'o-', color='lightgreen', linewidth=2, label='A Personal Characteristics')#添加数值标签(选写)
for i in range(len(angels)-1):ax.text(angels[i], data[i]+0.8, str(data[i]), color='b')#填充区域
ax.fill(angels, data, facecolor='red', alpha=0.25)
ax.set_xticks(angels[:-1])
ax.set_xticklabels(labels, ha='center')
ax.set_title('Academic Scholar Research Feature Radar Chart', va='bottom', fontweight='bold')
#设置一些图例要求
plt.grid(True)
#plt.legend(loc='upper right')
#plt.legend(loc='upper right', bbox_to_anchor=(1.2, 0.55), bbox_transform=plt.gcf().transFigure)
plt.savefig('雷达图1.jpg')
plt.show()

在这里插入图片描述

3.Radar图绘图案例:多样本图绘制

import numpy as np
import matplotlib.pyplot as plt
import matplotlib
import warningswarnings.filterwarnings("ignore")matplotlib.rcParams['font.family'] = 'serif'
matplotlib.rcParams['font.serif'] = 'Times New Roman'
matplotlib.rcParams['font.style'] = 'italic' radar_labels = np.array(['A1', 'A2', 'A3','A4', 'A5', 'A6'])
nAttr = 6data = np.array([[0.40, 0.32, 0.35, 0.30, 0.30, 0.88],[0.85, 0.35, 0.30, 0.40, 0.40, 0.30],[0.43, 0.89, 0.30, 0.28, 0.22, 0.30],[0.30, 0.25, 0.48, 0.85, 0.45, 0.40],[0.20, 0.38, 0.87, 0.45, 0.32, 0.28],[0.34, 0.31, 0.38, 0.40, 0.92, 0.28]])
data_labels = ('Engineer', 'Laboratory Technician', 'Artist', 'Salesperson', 'Social Worker', 'Clerk')angles = np.linspace(0, 2*np.pi, nAttr, endpoint=False)data = np.concatenate((data, [data[0]]))
angles = np.concatenate((angles, [angles[0]]))fig = plt.figure(facecolor='white')
ax = plt.subplot(111, polar=True)ax.plot(angles, data, 'o-', linewidth=1, alpha=0.2)
ax.fill(angles, data, alpha=0.3)ax.set_thetagrids(np.degrees(angles[0:6]), labels=radar_labels)
ax.set_title('Holland Personality Analysis', va='bottom', fontweight='bold', size=16)legend = plt.legend(data_labels, loc=(1.1, 0.55), labelspacing=0.1, edgecolor='k', fontsize=10)plt.grid(True)
plt.savefig('雷达图2.jpg')
plt.show()

在这里插入图片描述

4.Radar图绘图案例:Matplotlib标准绘图案例

import numpy as np
import matplotlib.pyplot as plt
from matplotlib.patches import Circle, RegularPolygon
from matplotlib.path import Path
from matplotlib.projections.polar import PolarAxes
from matplotlib.projections import register_projection
from matplotlib.spines import Spine
from matplotlib.transforms import Affine2Ddef radar_factory(num_vars, frame='circle'):"""Create a radar chart with `num_vars` axes.This function creates a RadarAxes projection and registers it.Parameters----------num_vars : intNumber of variables for radar chart.frame : {'circle', 'polygon'}Shape of frame surrounding axes."""# calculate evenly-spaced axis anglestheta = np.linspace(0, 2*np.pi, num_vars, endpoint=False)class RadarTransform(PolarAxes.PolarTransform):def transform_path_non_affine(self, path):# Paths with non-unit interpolation steps correspond to gridlines,# in which case we force interpolation (to defeat PolarTransform's# autoconversion to circular arcs).if path._interpolation_steps > 1:path = path.interpolated(num_vars)return Path(self.transform(path.vertices), path.codes)class RadarAxes(PolarAxes):name = 'radar'PolarTransform = RadarTransformdef __init__(self, *args, **kwargs):super().__init__(*args, **kwargs)# rotate plot such that the first axis is at the topself.set_theta_zero_location('N')def fill(self, *args, closed=True, **kwargs):"""Override fill so that line is closed by default"""return super().fill(closed=closed, *args, **kwargs)def plot(self, *args, **kwargs):"""Override plot so that line is closed by default"""lines = super().plot(*args, **kwargs)for line in lines:self._close_line(line)def _close_line(self, line):x, y = line.get_data()# FIXME: markers at x[0], y[0] get doubled-upif x[0] != x[-1]:x = np.append(x, x[0])y = np.append(y, y[0])line.set_data(x, y)def set_varlabels(self, labels):self.set_thetagrids(np.degrees(theta), labels)def _gen_axes_patch(self):# The Axes patch must be centered at (0.5, 0.5) and of radius 0.5# in axes coordinates.if frame == 'circle':return Circle((0.5, 0.5), 0.5)elif frame == 'polygon':return RegularPolygon((0.5, 0.5), num_vars,radius=.5, edgecolor="k")else:raise ValueError("Unknown value for 'frame': %s" % frame)def _gen_axes_spines(self):if frame == 'circle':return super()._gen_axes_spines()elif frame == 'polygon':# spine_type must be 'left'/'right'/'top'/'bottom'/'circle'.spine = Spine(axes=self,spine_type='circle',path=Path.unit_regular_polygon(num_vars))# unit_regular_polygon gives a polygon of radius 1 centered at# (0, 0) but we want a polygon of radius 0.5 centered at (0.5,# 0.5) in axes coordinates.spine.set_transform(Affine2D().scale(.5).translate(.5, .5)+ self.transAxes)return {'polar': spine}else:raise ValueError("Unknown value for 'frame': %s" % frame)register_projection(RadarAxes)return thetadef example_data():# The following data is from the Denver Aerosol Sources and Health study.# See doi:10.1016/j.atmosenv.2008.12.017## The data are pollution source profile estimates for five modeled# pollution sources (e.g., cars, wood-burning, etc) that emit 7-9 chemical# species. The radar charts are experimented with here to see if we can# nicely visualize how the modeled source profiles change across four# scenarios:#  1) No gas-phase species present, just seven particulate counts on#     Sulfate#     Nitrate#     Elemental Carbon (EC)#     Organic Carbon fraction 1 (OC)#     Organic Carbon fraction 2 (OC2)#     Organic Carbon fraction 3 (OC3)#     Pyrolyzed Organic Carbon (OP)#  2)Inclusion of gas-phase specie carbon monoxide (CO)#  3)Inclusion of gas-phase specie ozone (O3).#  4)Inclusion of both gas-phase species is present...data = [['Sulfate', 'Nitrate', 'EC', 'OC1', 'OC2', 'OC3', 'OP', 'CO', 'O3'],('Basecase', [[0.88, 0.01, 0.03, 0.03, 0.00, 0.06, 0.01, 0.00, 0.00],[0.07, 0.95, 0.04, 0.05, 0.00, 0.02, 0.01, 0.00, 0.00],[0.01, 0.02, 0.85, 0.19, 0.05, 0.10, 0.00, 0.00, 0.00],[0.02, 0.01, 0.07, 0.01, 0.21, 0.12, 0.98, 0.00, 0.00],[0.01, 0.01, 0.02, 0.71, 0.74, 0.70, 0.00, 0.00, 0.00]]),('With CO', [[0.88, 0.02, 0.02, 0.02, 0.00, 0.05, 0.00, 0.05, 0.00],[0.08, 0.94, 0.04, 0.02, 0.00, 0.01, 0.12, 0.04, 0.00],[0.01, 0.01, 0.79, 0.10, 0.00, 0.05, 0.00, 0.31, 0.00],[0.00, 0.02, 0.03, 0.38, 0.31, 0.31, 0.00, 0.59, 0.00],[0.02, 0.02, 0.11, 0.47, 0.69, 0.58, 0.88, 0.00, 0.00]]),('With O3', [[0.89, 0.01, 0.07, 0.00, 0.00, 0.05, 0.00, 0.00, 0.03],[0.07, 0.95, 0.05, 0.04, 0.00, 0.02, 0.12, 0.00, 0.00],[0.01, 0.02, 0.86, 0.27, 0.16, 0.19, 0.00, 0.00, 0.00],[0.01, 0.03, 0.00, 0.32, 0.29, 0.27, 0.00, 0.00, 0.95],[0.02, 0.00, 0.03, 0.37, 0.56, 0.47, 0.87, 0.00, 0.00]]),('CO & O3', [[0.87, 0.01, 0.08, 0.00, 0.00, 0.04, 0.00, 0.00, 0.01],[0.09, 0.95, 0.02, 0.03, 0.00, 0.01, 0.13, 0.06, 0.00],[0.01, 0.02, 0.71, 0.24, 0.13, 0.16, 0.00, 0.50, 0.00],[0.01, 0.03, 0.00, 0.28, 0.24, 0.23, 0.00, 0.44, 0.88],[0.02, 0.00, 0.18, 0.45, 0.64, 0.55, 0.86, 0.00, 0.16]])]return dataif __name__ == '__main__':N = 9theta = radar_factory(N, frame='polygon')data = example_data()spoke_labels = data.pop(0)fig, axs = plt.subplots(figsize=(9, 9), nrows=2, ncols=2,subplot_kw=dict(projection='radar'))fig.subplots_adjust(wspace=0.25, hspace=0.20, top=0.85, bottom=0.05)colors = ['b', 'r', 'g', 'm', 'y']# Plot the four cases from the example data on separate axesfor ax, (title, case_data) in zip(axs.flat, data):ax.set_rgrids([0.2, 0.4, 0.6, 0.8])ax.set_title(title, weight='bold', size='medium', position=(0.5, 1.1),horizontalalignment='center', verticalalignment='center')for d, color in zip(case_data, colors):ax.plot(theta, d, color=color)ax.fill(theta, d, facecolor=color, alpha=0.25, label='_nolegend_')ax.set_varlabels(spoke_labels)# add legend relative to top-left plotlabels = ('Factor 1', 'Factor 2', 'Factor 3', 'Factor 4', 'Factor 5')legend = axs[0, 0].legend(labels, loc=(0.98, -0.2),labelspacing=0.1, fontsize=12,edgecolor='k')fig.text(0.5, 0.965, '5-Factor Solution Profiles Across Four Scenarios',horizontalalignment='center', color='black', weight='bold',size=16)plt.savefig('雷达图3.jpg')  plt.show()

在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/639377.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

sql数据库的相关概念与底层介绍

本文中的数据库指的是磁盘数据库。如果有sql语言(CRUD,增删改查)的使用经验会更容易理解本文的知识点。 数据库与redis的区别 数据库:数据存储长期在磁盘中,小部分频繁需要的数据会被临时提取在内存中。 Redis&…

np.argsort排序问题(关于位次)-含GitHub上在numpy项目下提问的回复-总结可行方案

np.argsort 与获取位相关问题 位次: 数组中的数据在其排序之后的另一个数组中的位置 [1,0,2,3] 中 0的位次是1 1的位次是2 2的位次是3 3的位次是4 这里先直接给出结论,np.argsort()返回的索引排序与实际位次在确实在某些情况下会出现一致,但后来numpy的开…

用pandas实现用前一行的excel的值填充后一行

今天接到一份数据需要分析,数据在一个excel文件里,内容大概形式如下: 后面空的格子里的值就是默认是前面的非空的值,由于数据分析的需要需要对重复的数据进行去重,去重就需要把控的cell的值补上,然后根据几…

HCIP网络的类型

一.网络类型: 点到点 BMA:广播型多路访问 -- 在一个MA网络中同时存在广播(泛洪)机制 NBMA:非广播型多路访问 -- 在一个MA网络中,没有泛洪机制-----不怎么使用了 MA:多路访问 -- 在一个…

JavaEE 文件操作IO

文件操作&IO 文章目录 文件操作&IO1. 认识文件2. 文件操作2.1 File 类2.2 文件读写2.2.1 FileInputStream2.2.2 FileOutputStream2.2.3 FileReader2.2.4 FileWriter2.2.5 Scanner读取文件 3. 案例练习3.1 案例一3.2 案例二3.3 案例三 在进行文件操作之前,我…

数据操作——缺失值处理

缺失值处理 缺失值的处理思路 如果想探究如何处理无效值, 首先要知道无效值从哪来, 从而分析可能产生的无效值有哪些类型, 在分别去看如何处理无效值 什么是缺失值 一个值本身的含义是这个值不存在则称之为缺失值, 也就是说这个值本身代表着缺失, 或者这个值本身无意义, 比如…

GPT应用程序的开发注意事项

GPT应用程序的开发语言可以选择多种语言,主要取决于您的偏好、团队的技能以及应用程序的具体需求。以下是一些常见的用于GPT应用程序开发的编程语言,希望对大家有所帮助。北京木奇移动技术有限公司,专业的软件外包开发公司,欢迎交…

项目管理流程

优质博文 IT-BLOG-CN 一、简介 项目是为提供某项独特产品【独特指:创造出与以往不同或者多个方面与以往有所区别产品或服务,所以日复一日重复的工作就不属于项目】、服务或成果所做的临时性【临时性指:项目有明确的开始时间和明确的结束时间,不会无限期…

【Web前端开发基础】CSS的盒子模型

CSS的盒子模型 一、学习目标 能够认识不同选择器的优先级公式能够进行CSS权重叠加计算,分析并解决CSS 冲突问题能够认识盒子模型的组成部分能够掌握盒子模型的边框、内边距、外边距的作用及简写形式能够计算盒子的实际大小能够了解外边距折叠现象,并知…

Linux用户空间和内核空间所有15种内存分配方法

在Linux操作系统中,内存管理是一个关键的系统功能。用户空间和内核空间分别使用不同的函数来申请内存。以下是用户空间和内核空间内存申请函数的详细列表: Linux用户空间内存申请函数 1. malloc() 函数: void* malloc(size_t size); 用于…

在IDEA中使用快捷键让XML注释更加规范

Setting -> Editor -> Code Style -> XML 取消勾选 Line comment at first column 这样我们在使用ctrl / 快速注释时,就可以让注释符号紧贴注释内容,不出现空格。

如何唯一标识一个进程

如何唯一标识一个进程 进程ID (PID): 每个运行中的进程都有一个全局唯一的整数标识符,称为进程ID(Process ID)。PID由内核分配,并在整个系统范围内保持唯一。 在shell中输入echo $$来查看当前shell的进程ID&#xf…

ip_vs 的管理以及 keepalived + lvs 案例

ip_vs 的管理 ipvsadm 与 keepalived for lvs ipvsadm 命令及参数介绍 部署和配置LVS服务会经常用到一些命令,如ipvsadm,可以使用“ipvsadm -help”命令查看使用帮助。 ipvsadm 命令的常用参数及其说明如下: # 添加虚拟服务器# 语法&#x…

PLC从HTTP服务端获取JSON文件,解析数据到寄存器

智能网关IGT-DSER集成了多种PLC协议,方便实现各种PLC与HTTP服务端之间通讯。通过网关的参数配置软件绑定JSON文件的字段与PLC寄存器地址,配置URL,即可采用POST命令,将JSON文件提交给HTTP的服务端; 服务端有返回的JSON&…

【JavaEE】认识网络的工作原理

作者主页:paper jie_博客 本文作者:大家好,我是paper jie,感谢你阅读本文,欢迎一建三连哦。 本文于《JavaEE》专栏,本专栏是针对于大学生,编程小白精心打造的。笔者用重金(时间和精力)打造&…

66 C++对象模型探索。C++编译器在什么时候给我们创建默认的构造函数?

一 前提,关于C编译器给我们生成 默认构造函数 的错误认知 传统知识认为:如果在一个类中,我们没有定义任何的构造函数,那么编译器会为我们隐式自动定义一个默认的构造函数,我们称这种构造函数为 "合成的默认构造函…

德思特方案|EMI兼容测试方案——匹配不同测试标准,准确高效!

方案背景 近场测试非常适合产品开发阶段辐射发射的EMI预兼容测试。在EMC测试中,进行辐射发射测试时,通常天线离被测物EUT很远,进行的都是远场测量。标准的远场辐射发射测试,可以准确定量的告诉我们被测件是否符合相应的EMC/EMI标…

SpringCloudConfig+SpringCloudBus+Actuator+Git实现Eureka关键配置属性热更新(全程不重启服务)

文章目录 前言1.痛点2.解决方案3.具体实现3.1搭建热配置服务3.2编写配置文件3.3搭建版本控制仓库3.4Eureka-Client引入以下依赖3.5Eureka-Client微服务编写以下配置bootstrap.yml提前加载3.6分别编写测试Controller3.7测试效果3.8下线场景压测 4.SpringCloudBus优化 前言 在上…

imgaug库图像增强指南(32):塑造【雪景】效果的视觉魔法

引言 在深度学习和计算机视觉的世界里,数据是模型训练的基石,其质量与数量直接影响着模型的性能。然而,获取大量高质量的标注数据往往需要耗费大量的时间和资源。正因如此,数据增强技术应运而生,成为了解决这一问题的…

Django(九)

1. 用户登录-Cookie和Session 什么是cookie和session? 发送HTTP请求或者HTTPS请求(无状态&短连接) http://127.0.0.1:8000/admin/list/ https://127.0.0.1:8000/admin/list/http无状态短连接:一次请求响应之后断开连接,再发请求重新连…