Bases: Warning
Reduced networkit functionality warning
Convert a std::string (= python byte string) to a normal Python string.
stdstring (str) – Input python byte string.
Python string.
pystring
Given a list of numbers, this function computes the rank of each value and returns a list of ranks where result[i] is the rank of the i-th element in the given sample. Currently used in networkit.profiling.stat.
sample (list(float)) – Input list of values.
Ranking of input values.
list(float)
Convert a Python string to a bytes object which is automatically coerced to std::string.
pystring (str) – Input python string.
Python bytes string.
stdstring