タイムスタンプが秒単位の長いファイルを読み取り、numpy または scipy を使用して CDF をプロットする必要があります。numpy で試してみましたが、出力が本来あるべきものではないようです。以下のコード: 提案を歓迎します。
import numpy as np
import matplotlib.pyplot as plt
data = np.loadtxt('Filename.txt')
sorted_data = np.sort(data)
cumulative = np.cumsum(sorted_data)
plt.plot(cumulative)
plt.show()