Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
99 views
in Technique[技术] by (71.8m points)

How to isolate and exctract specific values from an Excel spreadsheet in Python

I have a .csv with a list of 5,000 .jpg filenames (column M). This list is a subsample of a larger spreadsheet comprising ~60,000 rows (column H). I wish to attribute the respective 'Altitude' values (column K) to the relevant filenames in the subsample.

image

I have tried to achieve this within Excel without any results, how can I achieve this Pythonically?

Thanks,R

!!RESOLVED!!

Solution:

import numpy as np
import pandas as pd
import csv

subsample = pd.read_csv(r'C:UsersLaptopDocumentsPythonSubsample.csv', usecols = [1])
file = pd.read_csv(r'C:UsersLaptopDocumentsPythonData.csv', usecols = [7, 10])

combine = pd.merge(subsample, file[['JPG', 'Altitude']], on='JPG', how='inner')
combine.to_csv(r'C:UsersLaptopDocumentsPythonAltitude_Data.csv', index=False)
question from:https://stackoverflow.com/questions/65829207/how-to-isolate-and-exctract-specific-values-from-an-excel-spreadsheet-in-python

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...