Description Usage Arguments Details Value References Examples
View source: R/frequentist_tests.R
This function implements a two-sided t test for paired samples.
| 1 2 3 4 5 6 7 8 | corr_t_test(
  df,
  problem,
  baseline,
  algorithm = NULL,
  measure = NULL,
  rho = 0.01
)
 | 
| df | ('list') | 
| problem | ('character') | 
| baseline | ('character') | 
| algorithm | ('character') | 
| measure | ('character') | 
| rho | ('double') | 
The test has first been implemented in scmamp.
A list containing the following components:
measure ('character')
 A string with the name of the 
measure column. 
method ('character')
 A string with the name of the 
method. 
statistic ('double')
 The value of the statistic used in 
the test.
p_value ('double')
 The p-value for the test.
https://github.com/b0rxa/scmamp
| 1 2 |     results <- corr_t_test(df= test_benchmark_small, 
    problem = "problem_a", baseline = "algo_1", algorithm = "algo_2")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.