prepare_RHC_data {RHC}R Documentation

Prepare Input Data

Description

This function prepares input data for the evaluation criteria of landscape function analysis (LFA), rangeland health and condition.

Usage

prepare_RHC_data(canopy_oc_file, trait_file)

Arguments

canopy_oc_file

A data frame containing canopy cover and soil organic carbon data.

trait_file

A data frame containing plant species trait data.

Details

The function takes canopy cover, soil organic carbon (OC), and plant species trait data, and returns standardized data.

Note: The first row of the input data matrix (canopy_oc_file) must be the reference sample, and the second column must contain the OC data, and the canopy cover must be entered as a relative value.

Value

A standardized data frame for further analysis using Min-Max Normalization.

Examples

data(canopy_oc_file)
data(trait_file)
final_data_st <- prepare_RHC_data(canopy_oc_file, trait_file)

[Package RHC version 0.1.0 Index]