统计作图
today.zhang
不学无术
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
r ggplot2作图笔记
文章目录调整坐标轴标题的位置调整坐标轴标题的位置## 载入包library(ggplot2)## 调用ggplot2中的mpg数据集data('mpg')## 简单画一张图ggplot(mpg,aes(manufacturer, cty, color = cyl))+ geom_point(size = 2)主要通过 theme 中的 axis.title.x 和 axis.title.y 来调整ggplot(mpg,aes(manufacturer, cty, color =原创 2021-07-11 11:50:27 · 257 阅读 · 0 评论 -
python 作图的学习笔记
python 作图的学习笔记文章目录python 作图的学习笔记1 Fill Between and Alpha笔记,代码都来自于网络,来源都有注明1 Fill Between and Alpha代码来源:matplotlib examples# 导入需要的包import matplotlib.pyplot as pltimport numpy as np# 创造一些数据Nsteps, Nwalkers = 100, 250t = np.arange(Nsteps)S1 = 0.翻译 2021-06-28 22:30:41 · 586 阅读 · 0 评论
分享