(x)
| 1052 | if support is None: |
| 1053 | |
| 1054 | def pdf(x): |
| 1055 | return sum(K((x - x_i) / h) for x_i in data) / (len(data) * h) |
| 1056 | |
| 1057 | def cdf(x): |
| 1058 | return sum(W((x - x_i) / h) for x_i in data) / len(data) |
nothing calls this directly
no test coverage detected