The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
library(cld)
The make_cld() function provides several parameters for
customizing the output and behavior.
By default, letters are assigned with “a” representing the group with the lowest mean/median. You can reverse this:
result <- pairwise.wilcox.test(chickwts$weight, chickwts$feed, exact = FALSE)
# Default ordering
make_cld(result)
#> Compact Letter Display (CLD)
#> Signif. level (alpha): 0.05
#> Method: Wilcoxon rank sum test with continuity correction
#>
#> group cld spaced_cld
#> casein a a__
#> horsebean b _b_
#> linseed bc _bc
#> meatmeal ac a_c
#> soybean c __c
#> sunflower a a__
# Reversed ordering
make_cld(result, reversed = TRUE)
#> Compact Letter Display (CLD)
#> Signif. level (alpha): 0.05
#> Method: Wilcoxon rank sum test with continuity correction
#>
#> group cld spaced_cld
#> casein c __c
#> horsebean b _b_
#> linseed ab ab_
#> meatmeal ac a_c
#> soybean a a__
#> sunflower c __c
Sometimes the order of group names in comparisons needs to be swapped:
# Swap the order of compared groups
make_cld(result, swap_compared_names = TRUE)
For debugging or understanding the comparison process:
# Print comparison names during processing
make_cld(result, print_comp = TRUE)
Control how comparison strings are processed:
# Remove spaces from comparison strings
make_cld(df, remove_space = TRUE)
# Replace colons with hyphens
make_cld(df, swap_colon = TRUE)
# Remove equal signs
make_cld(df, remove_equal = TRUE)
# Replace "vs" with hyphens
make_cld(df, swap_vs = TRUE)
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.