Using the tic_analyse requires a dataframe with a column indicating time values and at least one column with intensity values. Passing only the dataframe and name of these two columns will generate an intensity-time plot and return a dataframe with peak intensity, time to peak and area under the curve (AUC). This analysis is performed by fitting a LOESS curve to the raw data, using the loess() function. AUC is calculated using the trapezium method for integration.
Generated plots display the raw data as black dots, loess curve in red, with blue dashed lines showing calculated peak intensity and time to peak.
# Simulating example data
set.seed(123)
example_data <- data.frame(time = seq(0, 82, by = 0.25))
random_vals <- sample(1:10, nrow(example_data), replace = TRUE)
example_data$regionA_intensity <- log(example_data$time + 1) * 50 -
example_data$time * 2 + random_vals
example_data$regionB_intensity <- log(example_data$time + 7, base = 10) *
80 - example_data$time * 1.5 + random_vals
# Showing dataframe structure
head(example_data,5)
#> time regionA_intensity regionB_intensity
#> 1 0.00 3.00000 70.60784
#> 2 0.25 13.65718 71.45204
#> 3 0.50 29.27326 79.25490
#> 4 0.75 28.48079 72.01914
#> 5 1.00 38.65736 76.74720
Time to peak proportion (for example time to 90 percent of peak) can be calculated using the peakproportion argument. This will be added to the plot as a dashed green line.
For area under the curve analysis a maximum time can be specified, for example AUC up to 10 seconds.
The loess.span argument can be adjusted to a number between 0 and 1, with larger values representing a greater degree of smoothing. In addition, any argument which can be passed into the loess() function can be passed into tic_analyse().
For loops can be used to analyse multiple regions and output a single result dataframe.
results <- data.frame() #making empty dataframe to hold results
for(region in c("regionA_intensity","regionB_intensity")){
resulttemp <- tic_analyse(example_data,"time",region) #storing results
resulttemp$Region <- region # adding column for region
results <- rbind(results, resulttemp) # combining results for different regions
}
For loops can be used to analyse multiple dataframes and output a single result dataframe.
example_data2 <- example_data #creating a second dataframe
results <- data.frame() #making empty dataframe to hold results
for(df in c("example_data","example_data2")){
resulttemp <- tic_analyse(get(df), # get() to get the dataframe object
"time","regionA_intensity")
resulttemp$data <- df # adding column for which dataframe results are from
results <- rbind(results, resulttemp) # combining results for different dataframes
}