Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 581 Bytes

NEWS.md

File metadata and controls

19 lines (12 loc) · 581 Bytes

version 0.1.0 [2021-10-06]

  • Implemented speed permutation-based statistical tests (one sample and two samples)

version 0.1.1 [2021-11-05]

  • Add pecora-package.md
  • Changed data matrix X dimension
  • Changed documentation and rand arguments
  • Deleted
  • Created separted function to compute p-values

version 0.1.2 [2025-01-08]

add ties.method = "max" to:

pecora/R/t2p.R

Lines 48 to 50 in 10923c4

"two.sided" = rowRanks(-abs(Test)) / ncol(Test),
"greater" = rowRanks(-Test) / ncol(Test),
"lower" = rowRanks(Test) / ncol(Test))

pecora/R/t2p.R

Lines 68 to 70 in 10923c4

"two.sided" = rowRanks(-abs(Test)) / ncol(Test),
"greater" = rowRanks(-Test) / ncol(Test),
"lower" = rowRanks(Test) / ncol(Test))