I am trying to estimate the total number of unique visitors to my website.
My website contains 500 different pages.
I am able to:
- find the number of unique users to a given page
- find the number of unique users to a collection of up to 200 pages
What would be the best method of estimating the total number of unique visitors to the total website?
My idea so far is to sample many different combinations of 200 pages of the total site and try to determine the likelihood of overlaps between samples - however I'm not sure how to actually implement this.
Can anyone tell me an acceptable method?
Thank you