deprecated {PhotoGEA}R Documentation

Deprecated functions

Description

Deprecated functions that will be fully removed in future releases. Each of these functions will produce an error when called that will redirect the user to a suitable replacement.

Usage

  read_tdl_file(...)

  read_licor_file(...)

  check_licor_data(...)

  calculate_arrhenius(...)

  calculate_peaked_gaussian(...)

Arguments

...

Additional arguments; currently unused.

Value

None of the deprecated functions return anything.

Examples

# These functions all throw errors, so we will wrap them in `tryCatch` here

tryCatch(
  read_tdl_file(),
  error = function(e) {print(e)}
)

tryCatch(
  read_licor_file(),
  error = function(e) {print(e)}
)

tryCatch(
  check_licor_data(),
  error = function(e) {print(e)}
)

tryCatch(
  calculate_arrhenius(),
  error = function(e) {print(e)}
)

tryCatch(
  calculate_peaked_gaussian(),
  error = function(e) {print(e)}
)

[Package PhotoGEA version 1.3.3 Index]