class documentation

An alternative ConditionalProbDist that simply wraps a dictionary of ProbDists rather than creating these from FreqDists.

Method __init__ No summary
Method __missing__ Undocumented

Inherited from ConditionalProbDistI:

Method __repr__ Return a string representation of this ConditionalProbDist.
Method conditions Return a list of the conditions that are represented by this ConditionalProbDist. Use the indexing operator to access the probability distribution for a given condition.
def __init__(self, probdist_dict): (source)
Parameters
probdist_dict:dict any -> probdista dictionary containing the probdists indexed by the conditions
def __missing__(self, key): (source)

Undocumented