I have two samples, and in each sample I measured fluorescence intensity from 10k cells. Unfortunately the instrument doesn't return raw data, just histograms and summary statistics (mean, st.d., and sample size). From the histograms, the data looks roughly exponentially distributed. I want to test for a difference in means using only the histograms, means, st.ds, and sample sizes.
Option 1: If the data was roughly normal, I'd plug the summary stats into a t-test, e.g. tsum.test. Unfortunately the data looks quite skewed, so I don't think that's appropriate:
Option 2: I also tried log-transforming the summary statistics, but unfortunately I'm not sure how to calculate sd(logx)
from sd(x)
.
What's the best way forward?