bayesbay.DataNoiseState

class bayesbay.DataNoiseState(std, correlation)

Data structure that stores the state of the data noise parameters during the inference.

Reference Details

correlation

Alias for field number 1

std

Alias for field number 0

copy()

Returns a deep-copy of the current DataNoiseState

Returns:

the clone of self

Return type:

DataNoiseState

count(value, /)

Return number of occurrences of value.

index(value, start=0, stop=9223372036854775807, /)

Return first index of value.

Raises ValueError if the value is not present.

todict(name)

Returns a dictionary containing the noise properties

Parameters:

name (str) – identifier for the DataNoiseState instance

Returns:

dictionary object with keys

  • name.std

  • name.correlation (only returned if set as a free parameter, see Target)

Return type:

dict

back to top