将csv文件加载到spyder中(Python 3.6)

时间:2017-10-29 00:25:19

标签: python spyder

我目前正在尝试将一个csv数据文件加载到spyder中,但我无法弄明白。此外,我的下面的代码得到一个值错误,指出“无法将字符串转换为浮点数:”

我的代码:

import numpy as np 
import matplotlib.pyplot as plt  

data = np.loadtxt('magnet lab.csv',delimiter=',',skiprows=2)  

kimberlite = np.array(data[:,0])   

forcekimberlite = np.array(data[:1]) 

plt.scatter(kimberlite,forcekimberlite,s=5,c='red',marker='o')  

plt.xlim(0,5)  

plt.xlabel('distance from center of magnet to kimberlite')  

plt.ylabel('Force') 

plt.title('Kimberlite results')  

plt.show()

1 个答案:

答案 0 :(得分:0)

尝试加载csv文件。

data = np.genfromtxt('magnet lab.csv',delimiter=',')