Skip to content
Snippets Groups Projects
Unverified Commit 38bb084b authored by Will Malisch's avatar Will Malisch Committed by GitHub
Browse files

Update plot scripts with sample data that works (#20)

parent 77635c56
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ column2 = []
column3 = []
# Open and read the CSV file
with open('outputs/1714090197.csv', 'r') as file:
with open('outputs/30steps.csv', 'r') as file:
reader = csv.reader(file)
for row in reader:
# Append data from each column to respective lists
......
......@@ -5,7 +5,7 @@ import csv
magnitudes = []
with open('outputs/50steps-vectorized.csv', 'r') as file:
with open('outputs/30steps-vectorized.csv', 'r') as file:
reader = csv.reader(file)
next(reader) # Skip the header row
for row in reader:
......
......@@ -5,7 +5,7 @@ import csv
# Initialize list to store magnitudes
magnitudes = []
with open('outputs/vectorized_data.csv', 'r') as file:
with open('outputs/30steps-vectorized.csv', 'r') as file:
reader = csv.reader(file)
next(reader) # Skip the header row
for row in reader:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment