Member 13997748 Ответов: 0

Как построить график после чтения csv-файла


У меня есть 22 файла в разных подпапках с одинаковым именем. Я пишу этот код, чтобы читать файлы один за другим. Каждый файл имеет 28800 строк и 207 столбцов. Я хочу построить график всех прочитанных данных сразу для моего выбора столбца.

Что я уже пробовал:

import os, sys


# Specify directory
# In your case, you may want something like the following
my_directory = 'C:/Users/Arijeet/Downloads/Data/IRNSS2018-8-10_23-52-46'


# Define the counter
counter = 1

# Start the loop
for folder, sub_folders, files in os.walk(my_directory):
  for special_file in files:
    if special_file == 'iono_tropo.csv':
      file_path = os.path.join(folder, special_file)

      # Open and read
      with open(file_path, 'r+') as read_file:
        print('Reading iono_tropo csv file ' + str(counter))

        # Print the file
        for line in read_file:
          print(line)

        # Increment the counter
        counter += 1

Richard MacCutchan

В чем же вопрос?

Member 13997748

как построить график из прочитанных данных??

0 Ответов