The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

fwhm()

Introduction

In the realm of experimental behavior analysis, most often in timing related research, the Full Width at Half Maximum (FWHM) analysis serves as a metric for quantifying the width of response peaks, particularly in Gaussian-like distributions observed across experimental conditions. FWHM provides a tangible measure to assess the precision, variability, and sensitivity of timing behavior.

Within timing experiments, where datasets often exhibit Gaussian-like distributions with linear components, FWHM analysis becomes a very useful analysis tool. By quantifying peak width, researchers can discern nuanced differences between conditions, assert precision and accuracy, validate theoretical models, and enhance the interpretability of timing data.

The FWHM computes the width of the range of data points in the X axis in which the Y axis values are at least half of the peak value or maximum height. The fwhm function takes two parameters:

Returning the Full Width at Half Maximum value and the point in the \(X\) axis at which the max value occurred, as well as \(x1\) and \(x2\) corresponding to the first intersection with the FWHM to the left and right of the peak.

Example

Lets load a data set from a Peak Procedure session and extract the FWHM and peak values:

data("gauss_example_2", package = "YEAB") # In this case the IF value is 30s.
peak_data <- gauss_example_2
den <- density(peak_data$Response_Average)

fwhm_values <- fwhm(den$x, den$y)

fwhm_values
## $fwhm
## [1] 1.049185
## 
## $peak
## [1] 0.9022719
## 
## $x1
## [1] 0.4246578
## 
## $x2
## [1] 1.473843

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.