一、极坐标

在平面内取一个定点O,叫极点,引一条射线Ox,叫做极轴,再选定一个长度单位和角度的正方向(通常取逆时针方向)。对于平面内任何一点M,用ρ表示线段OM的长度(有时也用r表示),θ表示从Ox到OM的角度,ρ叫做点M的极径,θ叫做点M的极角,有序数对 (ρ,θ)就叫点M的极坐标,这样建立的坐标系叫做极坐标系。通常情况下,M的极径坐标单位为1(长度单位),极角坐标单位为rad(或°)

二、matplotlib绘制极坐标图

1.创建极坐标图

matplotlib的pyplot子库提供了绘制极坐标图的方法,在调用subplot()创建子图时通过设置projection='polar',便可创建一个极坐标子图,然后调用plot()在极坐标子图中绘图。

下面就创建一个极坐标子图和一个直角坐标子图进行对比。

  1. import matplotlib.pyplot as plt
  2. ax1 = plt.subplot(121, projection='polar')
  3. ax2 = plt.subplot(122)
  4. ax1.plot(theta,theta/6,'--',lw=2)
  5. ax2.plot(theta,theta/6,'--',lw=2)
  6. plt.show()

2.极坐标图设置

dir()命令可以得到一个对象的所有方法属性,通过比较ax1ax2的方法属性便可知道极坐标有哪些设置方法。

  1. >>> print(sorted(set(dir(ax1))-set(dir(ax2))))
  2. ['InvertedPolarTransform', 'PolarAffine', 'PolarTransform', 'RadialLocator', 'ThetaFormatter', '_default_rlabel_position', '_default_theta_direction', '_default_theta_offset', '_direction', '_r_label_position', '_theta_label1_position', '_theta_label2_position', '_theta_offset', '_xaxis_text1_transform', '_xaxis_text2_transform', '_yaxis_text_transform', 'get_rlabel_position', 'get_rmax', 'get_rmin', 'get_theta_direction', 'get_theta_offset', 'resolution', 'set_rgrids', 'set_rlabel_position', 'set_rlim', 'set_rmax', 'set_rmin', 'set_rscale', 'set_rticks', 'set_theta_direction', 'set_theta_offset', 'set_theta_zero_location', 'set_thetagrids', 'transProjection', 'transProjectionAffine', 'transPureProjection']

2.1 极坐标正方向

set_theta_direction方法用于设置极坐标的正方向

  • set_theta_direction的参数值为1,'counterclockwise'或者是'anticlockwise'的时候,正方向为逆时针;
  • set_theta_direction的参数值为-1或者是'clockwise'的时候,正方向为顺时针;
  • 默认情况下正方向为逆时针
  1. import matplotlib.pyplot as plt
  2. import numpy as np
  3. theta=np.arange(0,2*np.pi,0.02)
  4. ax1= plt.subplot(121, projection='polar')
  5. ax2= plt.subplot(122, projection='polar')
  6. ax2.set_theta_direction(-1)
  7. ax1.plot(theta,theta/6,'--',lw=2)
  8. ax2.plot(theta,theta/6,'--',lw=2)
  9. plt.show()

2.2 极坐标0°位置

set_theta_zero_location方法用于设置极坐标0°位置

  • 0°可设置在八个位置,分别为N, NW, W, SW, S, SE, E, NE
  • set_theta_zero_location的参数值为'N','NW','W','SW','S','SE','E','NE'时,0°分别对应的位置为方位N, NW, W, SW, S, SE, E, NE;
  • 默认情况下0°位于E方位
  1. import matplotlib.pyplot as plt
  2. import numpy as np
  3. theta=np.arange(0,2*np.pi,0.02)
  4. ax1= plt.subplot(121, projection='polar')
  5. ax2= plt.subplot(122, projection='polar')
  6. ax2.set_theta_zero_location('N')
  7. ax1.plot(theta,theta/6,'--',lw=2)
  8. ax2.plot(theta,theta/6,'--',lw=2)
  9. plt.show()

2.3极坐标角度网格线显示

set_thetagrids方法用于设置极坐标角度网格线显示

  • 参数为所要显示网格线的角度值列表
  • 默认显示0°、45°、90°、135°、180°、225°、270°、315°的网格线
  1. import matplotlib.pyplot as plt
  2. import numpy as np
  3. theta=np.arange(0,2*np.pi,0.02)
  4. ax1= plt.subplot(121, projection='polar')
  5. ax2= plt.subplot(122, projection='polar')
  6. ax2.set_thetagrids(np.arange(0.0, 360.0, 30.0))
  7. ax1.plot(theta,theta/6,'--',lw=2)
  8. ax2.plot(theta,theta/6,'--',lw=2)
  9. plt.show()

2.4极坐标角度偏离

set_theta_offset方法用于设置角度偏离

  • 参数值为弧度值数值
  1. import matplotlib.pyplot as plt
  2. import numpy as np
  3. theta=np.arange(0,2*np.pi,0.02)
  4. ax1= plt.subplot(121, projection='polar')
  5. ax2= plt.subplot(122, projection='polar')
  6. ax2.set_theta_offset(np.pi)
  7. ax1.plot(theta,theta/6,'--',lw=2)
  8. ax2.plot(theta,theta/6,'--',lw=2)
  9. plt.show()

2.5极坐标极径网格线显示

set_rgrids方法用于设置极径网格线显示

  • 参数值为所要显示网格线的极径值列表,最小值不能小于等于0
  1. import matplotlib.pyplot as plt
  2. import numpy as np
  3. theta=np.arange(0,2*np.pi,0.02)
  4. ax1= plt.subplot(121, projection='polar')
  5. ax2= plt.subplot(122, projection='polar')
  6. ax2.set_rgrids(np.arange(0.2,1.0,0.4))
  7. ax1.plot(theta,theta/6,'--',lw=2)
  8. ax2.plot(theta,theta/6,'--',lw=2)
  9. plt.show()

2.6极坐标极径标签位置

set_rlabel_position方法用于设置极径标签显示位置

  • 参数为标签所要显示在的角度
  1. import matplotlib.pyplot as plt
  2. import numpy as np
  3. theta=np.arange(0,2*np.pi,0.02)
  4. ax1= plt.subplot(121, projection='polar')
  5. ax2= plt.subplot(122, projection='polar')
  6. ax2.set_rlabel_position('90')
  7. ax1.plot(theta,theta/6,'--',lw=2)
  8. ax2.plot(theta,theta/6,'--',lw=2)
  9. plt.show()

2.7极坐标极径范围

set_rlim方法用于设置显示的极径范围

  • 参数为极径最小值,最大值
  1. import matplotlib.pyplot as plt
  2. import numpy as np
  3. theta=np.arange(0,2*np.pi,0.02)
  4. ax1= plt.subplot(121, projection='polar')
  5. ax2= plt.subplot(122, projection='polar')
  6. ax2.set_rlim(0.6,1.2)
  7. ax1.plot(theta,theta/6,'--',lw=2)
  8. ax2.plot(theta,theta/6,'--',lw=2)
  9. plt.show()

2.8极坐标极径最大值

set_rmax方法用于设置显示的极径最大值

  • 该方法要在绘制完图像后使用才有效
  1. import matplotlib.pyplot as plt
  2. import numpy as np
  3. theta=np.arange(0,2*np.pi,0.02)
  4. ax1= plt.subplot(121, projection='polar')
  5. ax2= plt.subplot(122, projection='polar')
  6. ax1.plot(theta,theta/6,'--',lw=2)
  7. ax2.plot(theta,theta/6,'--',lw=2)
  8. ax2.set_rmax(0.6)
  9. plt.show()

2.9极坐标极径最小值

set_rmin方法用于设置显示的极径最小值

  • 该方法要在绘制完图像后使用才有效
  1. import matplotlib.pyplot as plt
  2. import numpy as np
  3. theta=np.arange(0,2*np.pi,0.02)
  4. ax1= plt.subplot(121, projection='polar')
  5. ax2= plt.subplot(122, projection='polar')
  6. ax1.plot(theta,theta/6,'--',lw=2)
  7. ax2.plot(theta,theta/6,'--',lw=2)
  8. ax2.set_rmin(0.6)
  9. plt.show()

2.10 极径对数坐标

set_rscale方法用于设置极径对数坐标

  • 参数值为'linear','log','symlog'
  • 默认值为'linear'
  • 该方法要在绘制完图像后使用才有效
  1. import matplotlib.pyplot as plt
  2. import numpy as np
  3. theta=np.arange(0,2*np.pi,0.02)
  4. ax1= plt.subplot(121, projection='polar')
  5. ax2= plt.subplot(122, projection='polar')
  6. ax1.plot(theta,theta/6,'--',lw=2)
  7. ax2.plot(theta,theta/6,'--',lw=2)
  8. ax2.set_rlim(math.pow(10,-1),math.pow(10,0))
  9. ax1.set_rscale('linear')
  10. ax2.set_rscale('symlog')
  11. plt.show()

2.11 极坐标极径网格线显示范围

set_rticks方法用于设置极径网格线的显示范围

  1. import matplotlib.pyplot as plt
  2. import numpy as np
  3. theta=np.arange(0,2*np.pi,0.02)
  4. ax1= plt.subplot(121, projection='polar')
  5. ax2= plt.subplot(122, projection='polar')
  6. ax2.set_rticks(np.arange(0.1, 0.9, 0.2))
  7. ax1.plot(theta,theta/6,'--',lw=2)
  8. ax2.plot(theta,theta/6,'--',lw=2)
  9. plt.show()


想观看Matplotlib教学视频,了解更多Matplotlib实用技巧可关注

微信公众账号: MatplotlibClass

今日头条号:Matplotlib小讲堂

matplotlib极坐标方法详解的更多相关文章

  1. session的使用方法详解

    session的使用方法详解 Session是什么呢?简单来说就是服务器给客户端的一个编号.当一台WWW服务器运行时,可能有若干个用户浏览正在运正在这台服务器上的网站.当每个用户首次与这台WWW服务器 ...

  2. Kooboo CMS - Html.FrontHtml[Helper.cs] 各个方法详解

    下面罗列了方法详解,每一个方法一篇文章. Kooboo CMS - @Html.FrontHtml().HtmlTitle() 详解 Kooboo CMS - Html.FrontHtml.Posit ...

  3. HTTP请求方法详解

    HTTP请求方法详解 请求方法:指定了客户端想对指定的资源/服务器作何种操作 下面我们介绍HTTP/1.1中可用的请求方法: [GET:获取资源]     GET方法用来请求已被URI识别的资源.指定 ...

  4. ecshop后台增加|添加商店设置选项和使用方法详解

    有时候我们想在Ecshop后台做个设置.radio.checkbox 等等来控制页面的显示,看看Ecshop的设计,用到了shop_config这个商店设置功能 Ecshop后台增加|添加商店设置选项 ...

  5. (转)Spring JdbcTemplate 方法详解

    Spring JdbcTemplate方法详解 文章来源:http://blog.csdn.net/dyllove98/article/details/7772463 JdbcTemplate主要提供 ...

  6. C++调用JAVA方法详解

    C++调用JAVA方法详解          博客分类: 本文主要参考http://tech.ccidnet.com/art/1081/20050413/237901_1.html 上的文章. C++ ...

  7. windows.open()、close()方法详解

    windows.open()方法详解:         window.open(URL,name,features,replace)用于载入指定的URL到新的或已存在的窗口中,并返回代表新窗口的Win ...

  8. CURL使用方法详解

    php采集神器CURL使用方法详解 作者:佚名  更新时间:2016-10-21   对于做过数据采集的人来说,cURL一定不会陌生.虽然在PHP中有file_get_contents函数可以获取远程 ...

  9. JAVA 注解的几大作用及使用方法详解

    JAVA 注解的几大作用及使用方法详解 (2013-01-22 15:13:04) 转载▼ 标签: java 注解 杂谈 分类: Java java 注解,从名字上看是注释,解释.但功能却不仅仅是注释 ...

随机推荐

  1. 51单片机开发板(W25Q16学习)

    教程资料 链接:https://pan.baidu.com/s/142JRSPisQO2Cu6VZ2Y5YrQ 密码:eom0 今天测试开发板的W25Q16(16Mbit--Flash)写一篇文章备忘 ...

  2. (转)Xpath语法格式整理

    原文 经常在工作中会使用到XPath的相关知识,但每次总会在一些关键的地方不记得或不太清楚,所以免不了每次总要查一些零碎的知识,感觉即很烦又浪费时间,所以对XPath归纳及总结一下. 在这篇文章中你将 ...

  3. LeetCode Search Insert Position (二分查找)

    题意 Given a sorted array and a target value, return the index if the target is found. If not, return ...

  4. ubuntu16.04在GTX1070环境下安装 cuda9.1

    设备要求 系统:Ubuntu16.04 显卡:GTX 1070 驱动:nvidia系列,显卡驱动的版本必须大于等于cuda的sh文件名里面的版本号 驱动可从 此处 下载,我已经整理好了 检查安装驱动 ...

  5. Docker网络解决方案 - Weave部署记录

    前面说到了Flannel的部署,今天这里说下Docker跨主机容器间网络通信的另一个工具Weave的使用.当容器分布在多个不同的主机上时,这些容器之间的相互通信变得复杂起来.容器在不同主机之间都使用的 ...

  6. GCD实现同步方法

    在iOS多线程中我们知道NSOperationQueue操作队列可以直接使用addDependency函数设置操作之间的依赖关系实现线程同步,还可以使用setMaxConcurrentOperatio ...

  7. 如何实现基于ssh框架的投票系统的的质量属性

    如何实现基于ssh框架的投票系统的的质量属性: 项目 :网上考试系统 我做的是网上考试系统,因为标准化的考试越来越重要,而通过计算机进行标准化判卷,系统会自动判卷出成绩,组织考试的人不用组织人员打印试 ...

  8. 01springboot快速入门

    SpringBoot快速入门 springboot的宗旨是习惯大于配置,所以spring里面大量使用了默认的配置来简化spring的配置.spring Boot的主要优点: 为所有Spring开发者更 ...

  9. 第三个Sprint ------第二天

    主界面代码 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns: ...

  10. tftp服务、串口工具minicom

    linux下安装tftp服务 参考这位仁兄的经验 确实百度上很多关于配置tftp服务的方法,但是这篇文章的介绍真的是很精简,对于一个刚接触纯linux环境的小白来说是很舒服的一件事. 首先是安装tft ...