# 2D-kromme import matplotlib.pyplot as plt import numpy as np # Normaal doe ik 7 x 7, maar dan werd ie net iets breder dan 600 px fig = plt.figure (figsize = (6.9, 6.9)) # aantalstappen = 1.000.000.000 voor n < 0.5 en alleen de datapunten voor n > 0.2 data06 = np.loadtxt ('011900000000_807_06.txt') ax = fig.add_subplot () ax.set_xlim ([0.0, 4.0]) ax.set_ylim ([1.4, 1.6]) plt.plot (data06[:,0], data06[:,1], color = "orange") plt.show ()