I have two datasets, like:
A=[ 1, 1.1, 1.2, 1.3, 1.1, 1.1, 1.2, 1.1, 1, 1, 1, 1, 1, 1, 1.1, 1.1, 1.1]
B=[1.4, 1.4, 1.3, 1.4, 1.4, 1.5, 1.4, 1.4, 1.3, 1.3, 1.3, 1.4, 1.3, 1.3, 1.2, 1.2, 1.4]
I want to divide the distributions of them, distributionA/distributionB, but I can not find any solution, because they are not list to divide them easily. Actually I want to calculate the supremium of distributionA/distributionB in python. I found a toolbox in R that does the same thing:
https://github.com/hoxo-m/densratio
but I want to do this in Python