Enthought Canopy의 Python: csv 파일 조작 (Python in Enthought Canopy: manipulating csv files)


문제 설명

Enthought Canopy의 Python: csv 파일 조작 (Python in Enthought Canopy: manipulating csv files)

내 코드의 목표는 csv 파일을 가져와서 좌표 값이 포함된 열만 가져와서 배열로 변환하고 다른 파일의 다른 좌표 집합으로 수학 함수를 수행할 수 있도록 하는 것입니다. 파이썬에서 파일 조작은 제 강점이 아닙니다. 내 코드는 다음과 같습니다.

    list1 = []
    DR12 = open('dr12data.csv', 'r')
    for line in DR12:
        linelist = line.split(',')
        list1.append(linelist)

이렇게 하면 파일의 각 줄이 내가 원하는 개별 값을 선택할 수 있는 2차원 목록으로 바뀝니다. 그러나 한 번에 둘 이상의 값을 선택할 수 없으며 별도의 파일이나 목록에 좌표를 배치하려면 한 줄씩 수행해야 합니다(좀 더 무차별적인 방법). 코드를 보다 효율적이고 일반적으로 만들려고 합니다.


참조 솔루션

방법 1:

You could use pandas package which is written with C so it's fast and use read_csv with usecols to specify column which you need:

import pandas as pd
df = pd.read_csv('your_file', usecols=['col1', 'col2'])

Then you could use a lot of pantmethods, do mathematical function with whole columns.

(by Eric KopinsAnton Protopopov)

참조 문서

  1. Python in Enthought Canopy: manipulating csv files (CC BY‑SA 2.5/3.0/4.0)

#Python #CSV






관련 질문

Python - 파일 이름에 특수 문자가 있는 파일의 이름을 바꿀 수 없습니다. (Python - Unable to rename a file with special characters in the file name)

구조화된 배열의 dtype을 변경하면 문자열 데이터가 0이 됩니다. (Changing dtype of structured array zeros out string data)

목록 목록의 효과적인 구현 (Effective implementation of list of lists)

for 루프를 중단하지 않고 if 문을 중지하고 다른 if에 영향을 줍니다. (Stop if statement without breaking for loop and affect other ifs)

기본 숫자를 10 ^ 9 이상으로 늘리면 코드가 작동하지 않습니다. (Code fails to work when i increase the base numbers to anything over 10 ^ 9)

사용자 지정 대화 상자 PyQT5를 닫고 데이터 가져오기 (Close and get data from a custom dialog PyQT5)

Enthought Canopy의 Python: csv 파일 조작 (Python in Enthought Canopy: manipulating csv files)

학생의 이름을 인쇄하려고 하는 것이 잘못된 것은 무엇입니까? (What is wrong with trying to print the name of the student?)

다단계 열 테이블에 부분합 열 추가 (Adding a subtotal column to a multilevel column table)

여러 함수의 변수를 다른 함수로 사용 (Use variables from multiple functions into another function)

리프 텐서의 값을 업데이트하는 적절한 방법은 무엇입니까(예: 경사하강법 업데이트 단계 중) (What's the proper way to update a leaf tensor's values (e.g. during the update step of gradient descent))

Boto3: 조직 단위의 AMI에 시작 권한을 추가하려고 하면 ParamValidationError가 발생합니다. (Boto3: trying to add launch permission to AMI for an organizational unit raises ParamValidationError)







코멘트