Skip to contents

time_series_multiple_reads() gets a series of Tecan plate reader measurements from an Excel file when each timepoint contains multiple readings of each well

Usage

time_series_multiple_reads(dat_raw)

Arguments

dat_raw

(tibble) an Excel sheet as returned by readxl::read_xlsx()

Value

A tibble::tibble() containing tidy data

Examples

traw$time_series_multiple_reads |> time_series_multiple_reads()
#> # A tibble: 120 × 10
#>    well  `Time [s]` `Temp. [°C]`   Mean  StDev  `1;2` `2;1`  `1;1`  `0;1`  `1;0`
#>    <chr>      <dbl>        <dbl>  <dbl>  <dbl>  <dbl> <dbl>  <dbl>  <dbl>  <dbl>
#>  1 A1             0         30.6 0.0959 0.0106 0.0897 0.113 0.0873 0.0902 0.0991
#>  2 A1           600         30.3 0.108  0.0207 0.0925 0.144 0.104  0.104  0.0963
#>  3 A1          1200         30.6 0.106  0.0171 0.0926 0.135 0.102  0.102  0.0961
#>  4 A1          1800         30.7 0.108  0.0193 0.0924 0.140 0.102  0.109  0.0953
#>  5 A1          2400         30.5 0.104  0.0181 0.0920 0.134 0.0908 0.105  0.0952
#>  6 A1          3000         30.5 0.103  0.0184 0.0917 0.134 0.0895 0.103  0.0947
#>  7 A1          3600         30.3 0.102  0.0187 0.0921 0.135 0.0892 0.101  0.0951
#>  8 A1          4200         30.4 0.101  0.0165 0.0919 0.130 0.0898 0.101  0.0941
#>  9 A1          4800         30.5 0.101  0.0174 0.0919 0.131 0.0893 0.0996 0.0933
#> 10 A1          5400         30.6 0.101  0.0170 0.0916 0.131 0.0887 0.0989 0.0943
#> # ℹ 110 more rows