Posts: 43
Threads: 14
Joined: Jul 2018
Aug-06-2018, 02:08 PM
(This post was last modified: Aug-06-2018, 02:08 PM by SchroedingersLion.)
Greetings,
I just found this website that summarizes how to read from a .txt file:
https://www.guru99.com/reading-and-writi...ython.html
It only gives the options of reading the entire content or reading line by line.
Now I have to plot (x,y) data that is stored in a .txt file in two columns (one column for the x-, one columns for the y-values). The columns are merely separated by a few spaces. I want to store the x values in one array/list and the y values in another.
I am a complete Python beginner and I intend to work with Matplotlib later on for the actual plotting. However, to plot something I probably have to read in the data first, so here we are.
Regards!
Posts: 12,022
Threads: 484
Joined: Sep 2016
Aug-06-2018, 03:33 PM
(This post was last modified: Aug-06-2018, 03:34 PM by Larz60+.)
Either that site is quite old, or the author is not a GURU.
I would like to suggest HDF5 as a better solution: http://www.h5py.org/ and docs: http://docs.h5py.org/en/stable/
Posts: 7,311
Threads: 123
Joined: Sep 2016
Example:
import matplotlib.pyplot as plt
plt.style.use('ggplot')
import csv
x = []
y = []
with open('x_y.txt') as csv_file:
plots = csv.reader(csv_file, delimiter=',')
for row in plots:
x.append(int(row[0]))
y.append(int(row[1]))
plt.plot(x,y, label='Loaded from file!')
plt.xlabel('x')
plt.ylabel('y')
plt.title('Graph x y')
plt.legend(loc='upper left', shadow=True, fontsize='large')
plt.show() x_y.txt:
Output: 1,5
2,3
3,4
4,7
5,4
In future also look into Pandas and Jupyter Notebook.
This can make it easier to load and work with data/plot.
Posts: 85
Threads: 12
Joined: May 2018
Wow! Super awesome example!
Posts: 43
Threads: 14
Joined: Jul 2018
Aug-07-2018, 10:35 AM
(This post was last modified: Aug-07-2018, 10:36 AM by SchroedingersLion.)
(Aug-06-2018, 07:59 PM)snippsat Wrote: Example:
import matplotlib.pyplot as plt
plt.style.use('ggplot')
import csv
x = []
y = []
with open('x_y.txt') as csv_file:
plots = csv.reader(csv_file, delimiter=',')
for row in plots:
x.append(int(row[0]))
y.append(int(row[1]))
plt.plot(x,y, label='Loaded from file!')
plt.xlabel('x')
plt.ylabel('y')
plt.title('Graph x y')
plt.legend(loc='upper left', shadow=True, fontsize='large')
plt.show() x_y.txt:
Output: 1,5
2,3
3,4
4,7
5,4
![[Image: NRrzlw.jpg]](https://imageshack.com/a/img921/318/NRrzlw.jpg)
Hello Snippsat,
thanks for the great example!
Can you elaborate this part of the code?
with open('x_y.txt') as csv_file:
plots = csv.reader(csv_file, delimiter=',')
for row in plots:
x.append(int(row[0]))
y.append(int(row[1])) The first line seems to tell the computer to read the file as a csv_file. And I guess it is line by line? The lines are saved in the list(?) plots. The "delimiter=',' " means you are overwriting my spaces between the columns with a ','? Why exaclty?
"for row in plots" just seems to go through the rows and to save the x,y values in the lists.
I suppose I could also save additional columns like this, right?
edit: I am getting an error: "ValueError: invalid literal for int() with base 10: '0 144'"
"0 144" is the first line in the file. Most of the numbers are doubles, mb it is a problem that these first ones can be interpreted as ints?
Regards
Posts: 8,151
Threads: 160
Joined: Sep 2016
in snippsat file x_y.txt he has comma as separator. In your case you will use space, e.g. delimiter=" "
This whole line plots = csv.reader(csv_file, delimiter=' ') creates a csv.reader object which will be used to iterate/read lines from the file
Posts: 43
Threads: 14
Joined: Jul 2018
Aug-07-2018, 12:45 PM
(This post was last modified: Aug-07-2018, 12:46 PM by SchroedingersLion.)
(Aug-07-2018, 10:36 AM)buran Wrote: in snippsat file x_y.txt he has comma as separator. In your case you will use space, e.g. delimiter=" "
This whole line plots = csv.reader(csv_file, delimiter=' ') creates a csv.reader object which will be used to iterate/read lines from the file
Ok, I changed it. Now I get the error:
File "C:path.../.py", line 11, in <module>
y.append(int(row[1]))
ValueError: invalid literal for int() with base 10: ' '
the first rows in my file are these:
0 144
0.01 144
0.02 143.88
0.03 143.78
It's a .dat file that can be opened with the text editor. Ofc I changed the filename in the with open - line.
Posts: 8,151
Threads: 160
Joined: Sep 2016
You need to use float, because you have float numbers, not int like in snippsat example
Posts: 43
Threads: 14
Joined: Jul 2018
Ah, I tried double but I just realized there is just float here in Python.
Now, I get:
y.append(float(row[1]))
ValueError: could not convert string to float:
Sth wrong with the spaces?
Posts: 8,151
Threads: 160
Joined: Sep 2016
Aug-07-2018, 01:25 PM
(This post was last modified: Aug-07-2018, 01:26 PM by buran.)
(Aug-07-2018, 12:54 PM)SchroedingersLion Wrote: Sth wrong with the spaces? Check that you don't have extra spaces.
use print(repr(row[0])) and print(repr(row[1])) to see what you actually work with.
|