List of all classes, functions and methods in python-igraph
class Histogram:
Generic histogram class for real numbers
Example:
>>> h = Histogram(5) # Initializing, bin width = 5 >>> h << [2,3,2,7,8,5,5,0,7,9] # Adding more items >>> print(h) N = 10, mean +- sd: 4.8000 +- 2.9740 [ 0, 5): **** (4) [ 5, 10): ****** (6)
Method | __init__ |
Initializes the histogram with the given data set. |
Property | n |
Returns the number of elements in the histogram |
Property | mean |
Returns the mean of the elements in the histogram |
Property | sd |
Returns the standard deviation of the elements in the histogram |
Property | var |
Returns the variance of the elements in the histogram |
Method | add |
Adds a single number to the histogram. |
Method | add_many |
Adds a single number or the elements of an iterable to the histogram. |
Method | clear |
Clears the collected data |
Method | bins |
Generator returning the bins of the histogram in increasing order |
Method | __plot__ |
Plotting support |
Method | to_string |
Returns the string representation of the histogram. |
Method | __str__ |
Undocumented |
Instance Variable | _bin_width |
Undocumented |
Instance Variable | _bins |
Undocumented |
Instance Variable | _min |
Undocumented |
Instance Variable | _max |
Undocumented |
Instance Variable | _running_mean |
Undocumented |
Method | _get_bin |
Returns the bin index corresponding to the given number. |
Initializes the histogram with the given data set.
Parameters | bin_width | the bin width of the histogram. |
data | the data set to be used. Must contain real numbers. |
Returns the bin index corresponding to the given number.
Parameters | num | the number for which the bin is being sought |
create | whether to create a new bin if no bin exists yet. | |
Returns | the index of the bin or None if no bin exists yet and {create} is False . |
Adds a single number to the histogram.
Parameters | num | the number to be added |
repeat | number of repeated additions |
Adds a single number or the elements of an iterable to the histogram.
Parameters | data | the data to be added |
Generator returning the bins of the histogram in increasing order
Returns | a tuple with the following elements: left bound, right bound, number of elements in the bin |
Returns the string representation of the histogram.
Parameters | max_width | the maximal width of each line of the string This value may not be obeyed if it is too small. |
show_bars | specify whether the histogram bars should be shown | |
show_counts | specify whether the histogram counts should be shown. If both show_bars and show_counts are False , only a general descriptive statistics (number of elements, mean and standard deviation) is shown. |