NameError: name ‘pandas‘ is not defined和xlrd.biffh.XLRDError: Excel xlsx file; not supported——python

NameError: name 'pandas' is not defined和xlrd.biffh.XLRDError: Excel xlsx file; not supported——python中导入excel数据遇到的坑

  • 导入点云数据
    • xlrd.biffh.XLRDError: Excel xlsx file; not supported的错误
    • NameError: name 'pandas' is not defined问题解决
    • 读取代码

导入点云数据

第一次用python,想导入点云数据进行处理,查了网上教程,发现把点云数据.ply存为excel数据可以比较便捷的处理点云数据,但在导入时遇到了一些坑。

xlrd.biffh.XLRDError: Excel xlsx file; not supported的错误

在进行以下操作时:
NameError: name ‘pandas‘ is not defined和xlrd.biffh.XLRDError: Excel xlsx file; not supported——python_第1张图片
出现了以下报错:
NameError: name ‘pandas‘ is not defined和xlrd.biffh.XLRDError: Excel xlsx file; not supported——python_第2张图片
发现应该是xlsx不支持导入。
看了以下好兄弟的说法(https://blog.csdn.net/weixin_44073728/article/details/111054157),是因为xlrd更新导致,要转成xls格式才可以,但我发现我的数据过大,转成xls格式后,会丢失部分数据。
因此,用openpyxl代替xlrd打开.xlsx文件,但还是出现了NameError: name ‘pandas’ is not defined

NameError: name ‘pandas’ is not defined问题解决

查了好久好久,应该还是pandas这个名字的问题。然后突然顿悟,应该将pandas改成pd,这样就可以正确读出数据了!
NameError: name ‘pandas‘ is not defined和xlrd.biffh.XLRDError: Excel xlsx file; not supported——python_第3张图片

读取代码

代码片.

import pandas as pd
df=pd.read_excel('D:...\\xxx.xlsx',engine='openpyxl')
loc_x = df['x'].values
loc_y = df['y'].values
loc_z = df['z'].values
print(loc_x)
print(loc_y)
print(loc_z)

你可能感兴趣的:(点云处理,python)