
sci科研数据作图
墨氲
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python 随机生成N个坐标,并画随机大小的圆
python 随机生成N个坐标,并画随机大小的圆import matplotlib.pyplot as plt import numpy as np # plt.plot(x, y, '+')# plt.show()class Circle: def __init__(self,r1=0,x0=0,y0=0): self.r = r1 self.x = x0 self.y = y0 # 方法,画圆 def pint原创 2020-11-16 11:13:35 · 3399 阅读 · 0 评论 -
sci绘图plotly —— 2. seaborn 主题风格 themes
主题可以简单的认为是图像风格的默认样式1. 内置主题(built-in themes)通过一下语句查看:import plotly.io as piopio.templatesOutput:Templates configuration----------------------- Default template: 'plotly' Available templ...原创 2019-10-06 19:45:04 · 2044 阅读 · 0 评论 -
sci绘图seaborn —— 1数据分析图的要求 why python seaborn?
总体基本的要求: 以 nature communication为例• Provide images in RGB color and at 300 dpi or higher resolution.RGB色彩模式, 分辨率大于300• Use the same typeface (Arial or Helvetica) for all figures. Usesymbol font fo...原创 2019-10-07 11:19:07 · 2178 阅读 · 0 评论