【无标题】matplotlib,numpy使用

 连线图

import matplotlib
x=[1,2,3,4,5]
y=[2,3,4,5,6]
print(x,y)#[1,2,3,4,5][2,3,4,5,6]

from matplotlib import pyplot as plt
#%matplotlib inline#如果没有图片
fig1=plt.figure(figsize=(5,5))#长宽五英寸的图片
plt.plot(x,y)
plt.title('y vs x')#设置标题

plt.xlabel('x')
plt.ylabel('y')#坐标轴上的标签

plt.show()

 散点图

import matplotlib
x=[1,2,3,4,5]
y=[2,3,4,5,6]
print(x,y)#[1,2,3,4,5][2,3,4,5,6]

from matplotlib import pyplot as plt
#%matplotlib inline#如果没有图片
fig2=plt.figure(figsize=(5,5))

plt.scatter(x,y)
plt.title('y vs x')#设置标题

plt.xlabel('x')
plt.ylabel('y')#坐标轴上的标签

plt.show()

 numpy使用

import numpy as np
print('A is')
a = np.eye(5)
print(type(a))
print(a)
print('B is')
b = np.ones([5, 5])
print(type(b))
print(b)
print(b.shape)
print('C is')
c = a+b
print(type(c))
print(c.shape)
print(c)
# A is
# <class 'numpy.ndarray'>
# [[1. 0. 0. 0. 0.]
#  [0. 1. 0. 0. 0.]
#  [0. 0. 1. 0. 0.]
#  [0. 0. 0. 1. 0.]
#  [0. 0. 0. 0. 1.]]
# B is
# <class 'numpy.ndarray'>
# [[1. 1. 1. 1. 1.]
#  [1. 1. 1. 1. 1.]
#  [1. 1. 1. 1. 1.]
#  [1. 1. 1. 1. 1.]
#  [1. 1. 1. 1. 1.]]
# (5, 5)
# C is
# <class 'numpy.ndarray'>
# (5, 5)
# [[2. 1. 1. 1. 1.]
#  [1. 2. 1. 1. 1.]
#  [1. 1. 2. 1. 1.]
#  [1. 1. 1. 2. 1.]
#  [1. 1. 1. 1. 2.]]

pandas

import pandas as pd
data=pd.read_csv('')#导入文件
x=data.loc[:,'x']#x所有的数据
c=data.loc[:,'x'][y>50]#对数据进行筛选
import numpy as np
data_array=np.array(data)#把data转换为array
data_new=data+10
data_new.head()#看见部分数据
data_new.to_csv('****.csv')#保存数据

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

岩塘

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值