I am very new to R
and am trying to answer a "simple" question. I have a DataFrame of isolates and their optical densities (OD) over time. I am looking for the point that the OD's double from the start point.
Simplified Data Frame
Time (mins) R8-5081 R8-5088 R8-5095
0 0.766 0.895 0.623
15 0.531 0.593 0.436
30 0.531 0.581 0.408
45 0.522 0.593 0.407
60 0.52 0.6 0.409
75 0.527 0.612 0.416
90 0.527 0.616 0.416
I want the time at which the OD for R8-5081 becomes 1.06 (the first row where time = 0 is usually not the true value).
It is possible to do it in Excel, what would be the R
style of approach?