Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

28 results for “from:Iurie Malai”

How to run Shapiro-Wilk test for each grouped variable?
Iurie Malai · Apr 9, 2010 · r-help

Thank you very much, Jorge! Your example worked for me. Here is the code: d <- data.frame(data$groupFactor, data[2:17]) d # p-values for the shapiro test (by levels of groupFactor) with(d, aggregate(d[,-1], list(d...

Get output values in a table
Iurie Malai · May 26, 2010 · r-help

At a closer look I realized that this method is good for Shapiro-Wilk test, not for Two-samples Wilcoxon test. Can somebody to sugest a solution? I want to compare town with country. 2010/5/25 Iurie Malai <iurie...

How to run Shapiro-Wilk test for each grouped variable?
Iurie Malai · Apr 9, 2010 · r-help

Thank you, David! Here is the code to read my file: > data <- read.table("data.txt", header=TRUE, sep=";", na.strings="NA", dec=".", strip.white=TRUE) Jorge Ivan Velez gave me a working solution, but I am ready to learn...

How to apply the Wilcoxon test to a hole table at once?
Iurie Malai · Oct 23, 2009 · r-help

Thank you! Here is my adapted script: >lapply(Dataset[3:17], function(x) wilcox.test(x ~ X2, alternative="two.sided", data=Dataset, subset = X2 <= 2)) but in R I have nothing, and in R Commander I have this error message...

How to apply the Wilcoxon test to a hole table at once?
Iurie Malai · Oct 23, 2009 · r-help

Thank you very much! This is my adapted script and now it is OK: >lapply(Dataset[3:17], function(x) wilcox.test(x ~ X2, alternative="two.sided", data=Dataset)) But it is possible to get results more compact, similar to...

Wilcoxon test output as a table
Iurie Malai · Jun 5, 2010 · r-help

Hi! I searched some time ago a way to get the Wilcoxon test results as a table more or less formatted. Nobody told me any solution and I found nothing on the Internet. Recently I came across this link ( http...

Get output values in a table
Iurie Malai · May 25, 2010 · r-help

Hi, I use two similar scripts to put p-values of shapiro.test and, respectively, of wilcox.test in a table: a) d <- data.frame(dataset$GroupFactor, dataset[2:11]) # p-values for the shapiro test (by levels of GroupFactor...

Wilcoxon test and grouping factor with multiple levels
Iurie Malai · Aug 16, 2010 · r-help

Dear R users, I have a dataset with two variables: $esan - a grouping factor with 8 levels and $reus. I'd like to do wilcox.test on this dataset as sugested Weiwei here: https://stat.ethz.ch/pipermail/r-help...

Can't find what you're looking for? Try searching with Google .