The picture is of the graph of ratio of sum of all prime numbers under 2,000,000 to sum of all composite numbers under 2,000,000 ,which I created using python and matplotlib.
[ X Axis = Range of Numbers ]
[ Y Axis = Ratio]
It appears That the ratio is approaching 0 as we go to $\infty$.
Can anyone explain what it implies ? What does it say about the distribution of prime numbers ? What is the reason for such behaviours ? Is it okay to infer that for larger values , the curve will infinitely come closer to 0 without ever increasing?

The number of primes under $N$ is asymptotic to $N/(\log N)$, so the sum of those primes is no more than $N^2/(\log N)$. The sum of all numbers under $N$ is essentially $N^2/2$, so the primes make a negligible contribution to this sum (since $\log N$ well exceeds $2$).