I want to use function which calculates conditional mutual information in python. I found a library 'mdentropy' implementing it. But when I tried to see the list of functions of mdentropy library by using command dir(mdentropy)
it showed:
['__doc__', '__loader__', '__name__', '__package__', '__path__', '__spec__']
I opened the folder of mdenetropy but I am not able to see any python file having such functions there.
I downloaded the library from here: https://pypi.python.org/pypi/mdentropy
My question basically is:
- How can I use the function to calculate Conditional Mutual Information from this library?
- Is there any other resource from where I can calculate this function?