Python 和 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 可以自动给出坐标轴标题。
相关推荐
YENCSDN 2020-11-17
lsjweiyi 2020-11-17
houmenghu 2020-11-17
Erick 2020-11-17
HeyShHeyou 2020-11-17
以梦为马不负韶华 2020-10-20
lhtzbj 2020-11-17
夜斗不是神 2020-11-17
pythonjw 2020-11-17
dingwun 2020-11-16
lhxxhl 2020-11-16
坚持是一种品质 2020-11-16
染血白衣 2020-11-16
huavhuahua 2020-11-20
meylovezn 2020-11-20
逍遥友 2020-11-20
weiiron 2020-11-16