Hi!
As I am quite new here I would like to get all the help I can get. Sorry if this is the wrong thread. This is about R and Alteryxx
I try to compare medians and as Alteryx from what I know do not have a function for that, I tried to import some R libraries (RVAideMemoire and rcompanion) to try to use the functions Mood medtest and Pairwise Medtest to do so. I have figured out how to get them to run, but I have not figured out how I could make a neat output to some tables. For Mood's medtest it does not matter much since I will only get one R-value, but from the Pairwise Medtest I would like to get the output in order like something like this for the Pairwise Medtest:
| Comparison | p.value |
| A - B | 0.41... |
| A - C | 0.73... |
| A - D | 0.73.. |
| B - C | 0.31... |
| B - D | 1 |
| C - D | 1 |
That is very similar to what the program prints in the "Message screen" (see below)
R (1) Comparison p.value p.adjust
R (1) 1 A - B = 0 0.4142 1
R (1) 2 A - C = 0 0.7389 1
R (1) 3 A - D = 0 0.7389 1
R (1) 4 B - C = 0 0.3173 1
R (1) 5 B - D = 0 1 1
R (1) 6 C - D = 0 1 1
Since I am a novice however, I only manage to get the p.values printed out in this fashion (see below), which severely impacts the ability to use the function/R-program for 50+ different examination.
| X.0.4142. | X.0.7389. | X.0.7389.1 | X.0.3173. | X.1. | X.1..1 |
| 0.4142 | 0.7389 | 0.7389 | 0.3173 | 1 | 1 |
Do you have any ideas on how to get to the first table?
Best regards,
an R noob in need