We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15b1018 commit bac676cCopy full SHA for bac676c
docs/api.rst
@@ -8,6 +8,7 @@ This section provides detailed API documentation for the tailestim package.
8
9
base
10
estimators/index
11
+ estimator-set
12
result
13
data
14
docs/estimator-set.rst
@@ -0,0 +1,26 @@
1
+Estimator Set
2
+=============
3
+
4
+.. automodule:: tailestim.estimators.estimator_set
5
+ :members:
6
+ :undoc-members:
7
+ :show-inheritance:
+Examples
+--------
+.. code-block:: python
+ from tailestim import TailData, TailEstimatorSet
15
+ import matplotlib.pyplot as plt
16
17
+ data = TailData(name='CAIDA_KONECT').data
18
19
+ estim_set = TailEstimatorSet()
20
+ estim_set.fit(data)
21
22
+ estim_set.plot()
23
+ plt.show()
24
25
+ estim_set.plot_diagnostics()
26
0 commit comments