Class Bin
- Namespace
- Balsam.FactorAnalysis
- Assembly
- Balsam.Backtester.dll
Encapsulates information about a bin or range of data.
public class Bin
- Inheritance
-
Bin
- Inherited Members
- Extension Methods
Constructors
Bin(int)
Instantiates a new bin with the specified number.
public Bin(int bin)
Parameters
bin
int
Properties
BinNumber
Gets the bin number.
public int BinNumber { get; }
Property Value
Count
Gets the number of values in this bin.
public int Count { get; }
Property Value
EndingValue
Gets/sets the ending value of the range.
public double EndingValue { get; set; }
Property Value
PValue
Gets/sets the p-value.
public double PValue { get; set; }
Property Value
Range
Gets a string representation of the range.
public string Range { get; }
Property Value
StartingValue
Gets/sets the starting value of the range.
public double StartingValue { get; set; }
Property Value
TStat
Gets/sets the t-stat.
public double TStat { get; set; }
Property Value
Values
Gets an enumerable of values contained in the bin.
public IEnumerable<double> Values { get; }
Property Value
Methods
ToString()
Returns a string respresentation of this bin.
public override string ToString()