I have some paired data, obtained by measuring the response of subjects to the same stimulus given twice. I would like to show that the response does not change the second time, which means that the ratio between the two responses is 1.
Is it correct to use a one sample t-test to do compare the ratio of the two responses with a theoretical mean of 1?
Some R code to give you an example:
response.1 <- c(100, 2000, 4000, 50000, 3500)
response.2 <- c(120, 1980, 4030, 40900, 3300)
ratio <- response.2 / response.1
t.test(ratio, mu = 1)
EDIT : just a few more details about the measurements I am performing. These are experimental data ($n \sim 30$) coming from cells treated with a certain drug. I am measuring the level of an intracellular response to the drug, and the values I get are the area under the curve of the response, so they are strictly positive. The cells are exposed to the same drug twice and I want to show that the response does not decay over time. The absolute values are extremely variable for both biological and technical reasons.
My rational for choosing to use the ratio was to express the second response as percentage of the first response, hence removing much of the dispersion of the values.
It's important to point out at this point that the absolute values don't have much biological relevance, and that what is interesting in my context is the relative change of intensity in the response.