文章预览
图文 撰写 | 超级super栋 本文转载自“MedVis ”公众号 本文仅限转载 背景介绍 今天我们来学习一下,使用Python如何绘制常见的二维图形。 教程代码可直接复制,粘贴到python的IDE中进行运行即可出图。 软 件 [软件名称]:Anaconda | Spyder 基础绘图 折线图 # 导入库 import matplotlib . pyplot as plt # 设置数据 date = [ 0 , 3 , 7 , 10 , 15 , 20 , 21 , 25 , 26 , 30 ] body_temp = [ 36.8 , 37.2 , 37.6 , 37.8 , 38.5 , 38.2 , 38.0 , 37.5 , 37.6 , 36.8 ] # 绘制折线图 plt . plot ( date , body_temp , # 设置颜色 color = "r" , # 设置线型 linestyle = "--" , # 设置标记 marker = "o" ) # 设置x标签 plt . xlabel ( "Date (day)" ) # 设置y标签 plt . ylabel ( "Body temperature (℃)" ) # 设置标题 plt . title ( "The change of body temperature" ) # 设置x轴的标签 plt .
………………………………