Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道在 python 中(对于单个向量)是否有更好、更准确的 ECDF,或者通常比我的更准确。这是我现在的 -
x = np.sort(X) y = np.arange(1, len(x) + 1) / float(len(x))