码迷,mamicode.com
首页 > 编程语言 > 详细

Python 和 R语言 中的折线图

时间:2020-01-10 22:13:33      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:body   img   post   bsp   color   pos   坐标   图片   r语言   

1、用 R 的基础图形系统

 x <- c(21, 33, 42, 46, 60)
 y <- c(16, 20, 27, 41, 61)
 
plot(x, y, type=b‘)

技术图片

 

 

2 matplotlib 库

import matplotlib.pyplot as plt 

x = [21, 33, 42, 46, 60]
y = [16, 20, 27, 41, 61]

plt.plot(x, y, marker=o‘, ls=--‘, c=k)
plt.xlabel(x)
plt.ylabel(y)

plt.show()

技术图片

 

 

按语:

R 可以自动给出坐标轴标题。

Python 和 R语言 中的折线图

标签:body   img   post   bsp   color   pos   坐标   图片   r语言   

原文地址:https://www.cnblogs.com/shanger/p/12178039.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!