We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aff60d0 commit 5a47f50Copy full SHA for 5a47f50
1 file changed
Numerics/Distributions/Univariate/KernelDensity.cs
@@ -153,7 +153,6 @@ public enum KernelType
153
}
154
155
private double[] _sampleData;
156
- private double[] _pValues = [];
157
private double _bandwidth;
158
private KernelType _kernelDistribution;
159
private IKernel _kernel;
@@ -170,11 +169,6 @@ public enum KernelType
170
169
/// </summary>
171
public ReadOnlyCollection<double> SampleData => new ReadOnlyCollection<double>(_sampleData);
172
173
- /// <summary>
174
- /// Returns the array of probability plotting position values.
175
- /// </summary>
176
- public ReadOnlyCollection<double> ProbabilityValues => new ReadOnlyCollection<double>(_pValues);
177
-
178
/// <summary>
179
/// Gets and sets the kernel distribution type.
180
0 commit comments