I am trying to estimate the proportion of U.S. adults who use chatbots as a “friend.” (That’s not the exact RQ but it’s a good enough stand-in!)
I am estimating this as a product of two probabilities: P = P1 \times P2.
- P1: The proportion of U.S. adults who use chatbots.
- P2: The proportion of chatbot users who use them as a friend.
I do not have raw binomial count data. Instead, I have summary statistics (Means and Standard Errors) from various sources.
- For P1: I have 3 estimates from unrelated secondary surveys.
- For P2: I have 4 estimates from my own survey where I asked the question using 4 different phrasings, yielding different results.
I want to aggregate these estimates somehow to find the underlying parameters for P1 and P2, and then propagate the uncertainty to the product P to get a 95% Credible interval. What is the best way to do that?
Let’s say the proportions are:
# P1: Proportion of US adults who use chatbots (3 external estimates)
p1_means <- c(0.56, 0.5, 0.45)
p1_ses <- c(0.01, 0.09, 0.01)
# P2: Proportion of users who use as friend (4 estimates from different question wordings)
p2_means <- c(0.20, 0.24, 0.18, 0.22)
p2_ses <- c(0.04, 0.05, 0.03, 0.04)