I have 2 numpy arrays of same length lets call them A and B and 2 scalar values named C and D. I want to store these values into a single txt file. I thought of the following structure:
It doesnt have to have this format I just thought its convenient and clear. I know how to write a the numpy arrays into a txt file and read them out again, but I struggle how to write the txt file as a combination of arrays and scalar values and how to read them out again from txt to numpy.
A = np.array([1, 2, 3, 4, 5])
B = np.array([5, 4, 3, 2, 1])
C = [6]
D = [7]
np.savetxt('file.txt', (A, B))
A_B_load = np.loadtxt('file.txt')
A_load = A_B_load[0,:]
B_load= A_B_load[1,:]
This doesnt give me the same column structure that I proposed but stores the arrays in rows but that doesnt really matter.
I found one solution which is a bit unhandy since I have to fill up the scalar values with 0 for them to become of the same length like the arrays A and B there must be a smarter solution.
A = np.array([1, 2, 3, 4, 5])
B = np.array([5, 4, 3, 2, 1])
C = [6]
D = [7]
fill = np.zeros(len(A)-1)
C = np.concatenate((C,fill))
D = np.concatenate((D, fill))
np.savetxt('file.txt', (A,B,C,D))
A_B_load = np.loadtxt('file.txt')
A_load = A_B_load[0,:]
B_load = A_B_load[1,:]
C_load = A_B_load[2,0]
D_load = A_B_load[3,0]
savetxt
is designed to write a 2d array in a consistent csv form - a neat table with the same number of columns in each row.Here's one possible write format:
I put the scalars in a header line, since they don't match with the arrays.
loadtxt
can recreate thatarr
array:The header line can be read with:
I should have saved it as something that's simpler to parse, like '# 6,7'
Your accepted answer creates a dataframe with
nan
values and blanks in the csvNote that
np.nan
is a float, so some of the columns are float as a result.loadtxt
can't handle those "blank" columns;np.genfromtxt
is better at that, but it needs a delimiter like,
to mark them.Writing and reading the full length arrays is easy. But mixing types gets messy.
Here's a format that would be easier to write and read: