Description Usage Arguments Value Examples
Creates a dataframe of errors in pH potential at given inaccuracies
| 1 2 3 4 5 6 7 8 9 10 | create_error_df_pH(
  inaccuracies,
  pHmin,
  pHmax,
  Rmin,
  Rmax,
  delta,
  pKa,
  by = 0.01
)
 | 
| inaccuracies | A vector of inaccuracies (e.g. 0.02 for 2% error), always relative | 
| pHmin | The minimum pH for which to record error | 
| pHmax | The maximum pH for which to record error | 
| Rmin | the minimum possible ratiometric fluorescence | 
| Rmax | the maximum possible ratiometric fluorescence | 
| delta | the ratiometric fluorescence in the first wavelength | 
| pKa | the sensor's midpoint/pKa | 
| by | (optional, default: 0.01) The granularity of the error tableāe.g., by = 0.01 would record 275 and 275.01, etc. | 
| temp | (optional, default: 295.15) the temperature (in Kelvin) at which measurements were made | 
A dataframe of errors with columns: 'pH': the pH, 'Error': the error in this pH 'Inaccuracy': The inaccuracy of the measurements (relative to R).
| 1 | create_error_df_pH(c(0.01, 0.02), 2, 10, 1, 5, 0.2, 7)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.