Skyblack96
New member
- Joined
- Dec 31, 2022
- Messages
- 5
I have the following problem :
I have a server able to observe from which country a client make a request. Then, my server gives me the distribution of clients (on a 24h basis).
Let's say that we have :
For Belgium_city1 as example : 10000*0.1 = 1000 clients requesting my server
But I don't understand from where comes this solution. I tried with the join distribution like this.
where :
Thank you in advance
I have a server able to observe from which country a client make a request. Then, my server gives me the distribution of clients (on a 24h basis).
Let's say that we have :
- Belgium : 10%
- Canada : 40%
- China : 50%
- Belgium_city1 : 10000
- Belgium_city2 : 5000
- Spain_city1 : 20000
- Spain_city2 : 15000
- China_city1 : 40000
- China_city2 : 60000
For Belgium_city1 as example : 10000*0.1 = 1000 clients requesting my server
But I don't understand from where comes this solution. I tried with the join distribution like this.
- Let A = client comes from Belgium
- Let B = client comes from Belgium_city1
where :
- P(A) = 10% as observed by the server
- P(B|A) = P(Belgium_city1)/[P(Belgium_city1)+P(Belgium_city2)] = 10000/15000
Thank you in advance