Introduction
The evaluation_sim
function is used to evaluate the
performance of group effect estimation algorithms under simulated
conditions. This vignette demonstrates how to use the
evaluation_sim
function with example data provided in the
package.
Run the Evaluation Simulation
Run the evaluation_sim
function to evaluate the
performance based on the provided data:
# Evaluate simulation
evaluation_results <- evaluation.sim(pairs.rel.EV, U.2)
Examine the Output
Explore the structure and key components of the output:
# View the structure of the output
str(evaluation_results)
# Display first few rows of the results
cat("\nEvaluation Results (first 5 rows):\n")
print(head(evaluation_results, 5))