I have approximately 5,000 variables, each with 3 data points. These numbers are ratios, i.e. bounded at 0 and generally non-normal. I'm interested in testing whether the mean of each of the 5,000 variables is significantly different from 1.
Is there a test that's suitable here, given that the sample size is tiny (n=3) and the data isn't normal? Would a Mann-Whitney U-test work?
More generally, does it even make sense to assign a p-value to such tiny sample sizes?
Edit: In case anyone's interested, my solution was to log-transform the data so it's (at least approximately) normal, and then use a t-test. A parametric approach seems like a good way to maximize what little power I have. There are likely many others, but the discussion here was helpful.