Commit f12cebf8 authored by Leon Pyka's avatar Leon Pyka
Browse files

changed the composition of the table

parent 727d190e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -25,12 +25,12 @@ def write_data_to_txt(data, file_name):
    with open(file_name, 'w') as file:
        for point in data:
            x, y = point 
            file.write(f"{x},{y}\n")
            file.write(f"{x} {y}\n")

if __name__ == "__main__":
    seed = 1000
    full_path = base_path + "/" + file_name
    iv_data = get_iv_data(full_path)
    plot_iv_curve(iv_data)
    write_data_to_txt(iv_data, f"iv_{seed}.txt")
    write_data_to_txt(iv_data, f"iv_seed{seed}_0.txt")
    print("cutoff prev")
 No newline at end of file