Added README.md

This commit is contained in:
Josh Ashton
2023-11-09 14:53:18 -07:00
parent d423988442
commit 9c67490dec
5 changed files with 49 additions and 11 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ ax = fig.add_subplot(111)
# Read your data from a CSV file
data = []
with open('/tmp/data.txt', 'r') as csvfile:
with open('/usr/local/etc/data.txt', 'r') as csvfile:
reader = csv.reader(csvfile)
for row in reader:
data.append(row)