csvを選択しその中にある特定の数字を抽出したい。
・CSVのフォルダ名は「F241115-1353」
・特定の数字とは30列目の左から7番目の数字「86.6」
※30列目の数字→004,005,1.754,0.00,00,00,86.6,0.0,4.2,0.2,38.1
import csv
import matplotlib.pyplot as plt
Read the CSV file and extract the required value
y = None
with open('F241115-1353.csv', 'r') as file:
csv_reader = csv.reader(file)
for row in csv_reader:
if len(row) >= 30:
column_30 = row[29] # 30th column (0-indexed)
values = column_30.split(',')
if len(values) >= 7:
y = float(values[6]) # 7th value (0-indexed)
print
perplexityというAIを使用して作成しましたが上手く走りませんでした。