Table of Contents

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

int

Count

Gets the number of values in this bin.

public int Count { get; }

Property Value

int

EndingValue

Gets/sets the ending value of the range.

public double EndingValue { get; set; }

Property Value

double

PValue

Gets/sets the p-value.

public double PValue { get; set; }

Property Value

double

Range

Gets a string representation of the range.

public string Range { get; }

Property Value

string

StartingValue

Gets/sets the starting value of the range.

public double StartingValue { get; set; }

Property Value

double

TStat

Gets/sets the t-stat.

public double TStat { get; set; }

Property Value

double

Values

Gets an enumerable of values contained in the bin.

public IEnumerable<double> Values { get; }

Property Value

IEnumerable<double>

Methods

ToString()

Returns a string respresentation of this bin.

public override string ToString()

Returns

string