将距离矩阵从 Excel 导入到 Python
Importing Distance Matrix from Excel to Python
我有以下 Excel 格式的距离矩阵。
Excel Distance Matrix
我需要将其转换为 python 作为距离矩阵。但是,我现在无法实现。
请问你能帮帮我吗?
谢谢
编辑:This is my code and how the output looks like
我需要使用这个输出作为距离矩阵。
安装pandas
:
- Anaconda 环境:
conda install pandas
- Python 环境:
pip install pandas
并加载您的文件:
import pandas
df = pd.read_excel('myfile.xlsx')
阅读更多:
我有以下 Excel 格式的距离矩阵。 Excel Distance Matrix
我需要将其转换为 python 作为距离矩阵。但是,我现在无法实现。 请问你能帮帮我吗? 谢谢
编辑:This is my code and how the output looks like
我需要使用这个输出作为距离矩阵。
安装pandas
:
- Anaconda 环境:
conda install pandas
- Python 环境:
pip install pandas
并加载您的文件:
import pandas
df = pd.read_excel('myfile.xlsx')
阅读更多: