Re: [R] Mann Kendall mutation package?

2023-12-01 Thread Ben Bolker
Have you looked at the Kendall package? https://stackoverflow.com/questions/62288340/mann-kendall-in-r (you've cross-posted a version of this question to SO as well: https://stackoverflow.com/questions/77587426/what-is-the-algorithm-for-the-mann-kendall-mutation-test ) Please don't cross-p

Re: [R] Mann Kendall mutation package?

2023-12-01 Thread Rui Barradas
Às 11:58 de 01/12/2023, Nick Wray escreveu: Hello - does anyone know whether there are any packages for Mann-Kendall mutation tests in R available? The only one I could find online is this MK_mut_test: Mann-Kendall mutation test in Sibada/sibadaR: Sibada's accumulated R scripts for next probably

[R] Mann Kendall mutation package?

2023-12-01 Thread Nick Wray
Hello - does anyone know whether there are any packages for Mann-Kendall mutation tests in R available? The only one I could find online is this MK_mut_test: Mann-Kendall mutation test in Sibada/sibadaR: Sibada's accumulated R scripts for next probably use to avoid reinventing the wheel. (rdrr.io)

[R] Mann-Kendall test for many independent columns data set at a time

2015-03-30 Thread Desta Yoseph via R-help
I am analyzing trend test using Mann-kendall monotonic trendtest for 10,368 independent grid cell, each grid has 34 years dataset.  I supposed to find Kendall “tau” for each gridcell (each grid has 34 years data). The data is arranged in column wise (Iattached  part of the grid dataset  as a sam

Re: [R] Mann-Whitney by group

2013-09-09 Thread arun
om: David Chertudi To: arun Cc: R help Sent: Monday, September 9, 2013 2:29 PM Subject: Re: [R] Mann-Whitney by group Hello Arun, Thanks so much--while I haven't tried it yet, this seems as though it will be an excellent way to skip the categories (Actb, etc) that have missing values (N

Re: [R] Mann-Whitney by group

2013-09-09 Thread David Chertudi
")$p.value})) > # Bcl2 Ccl5 Cd27 Cd28 > #0.1250 0.1875 0.8125 0.8125 > > A.K. > > > > - Original Message - > From: David Chertudi > To: R. Michael Weylandt > Cc: "r-help@r-project.org" > Sent: Sunday, September 8, 2013 11:13 PM

Re: [R] Mann-Whitney by group

2013-09-09 Thread arun
0.8125 0.8125 A.K. - Original Message - From: David Chertudi To: R. Michael Weylandt Cc: "r-help@r-project.org" Sent: Sunday, September 8, 2013 11:13 PM Subject: Re: [R] Mann-Whitney by group The time has come to shake the cobwebs off of this analysis.  I have more data

Re: [R] Mann-Whitney by group

2013-09-09 Thread David Chertudi
The time has come to shake the cobwebs off of this analysis. I have more data now and need to run the same tests, the same way as above. My question is this--some of the pairs include NAs, and so are gumming up the works. I'm not sure how to exclude them using the lhs ~ rhs syntax. Any ideas her

[R] MANN

2013-04-18 Thread Gilson Carvalho
Dear all, Is there a package in R that has implemented the MANN (Multiresponse Artificial Neural Network) presented in (Olden, 2006 - Ecological Applications)? Best Wishes, -- Prof. Gilson Correia de Carvalho, M.Sc. Pesquisador Associado Labo

Re: [R] Mann-Whitney by group

2012-07-22 Thread Henric (Nilsson) Winell
On 2012-07-17 05:13, R. Michael Weylandt wrote: On Mon, Jul 16, 2012 at 3:39 PM, Oxenstierna wrote: lapply(thing, function(x) x[['p.value']]) --works very well, thank you. Not to be a chore, but I'm interested in comparing the results of wilcox.test--and the methodology we've employed so fa

Re: [R] Mann-Whitney by group

2012-07-16 Thread R. Michael Weylandt
On Mon, Jul 16, 2012 at 3:39 PM, Oxenstierna wrote: > lapply(thing, function(x) x[['p.value']]) --works very well, thank you. > > Not to be a chore, but I'm interested in comparing the results of > wilcox.test--and the methodology we've employed so far--with the results and > methodology of wilcox

Re: [R] Mann-Whitney by group

2012-07-16 Thread Oxenstierna
lapply(thing, function(x) x[['p.value']]) --works very well, thank you. Not to be a chore, but I'm interested in comparing the results of wilcox.test--and the methodology we've employed so far--with the results and methodology of wilcox_test (library("coin")). So, I'd like to compare groups 5 and

Re: [R] Mann-Whitney by group

2012-07-10 Thread R. Michael Weylandt
Untested, I think you need to lapply() over thing with some sort of extractor: lapply(thing, function(x) x[['p.value']]) Michael On Jul 10, 2012, at 3:45 PM, Oxenstierna wrote: > This works very well--thanks so much. > > By way of extension: how would one extract elements from the result obj

Re: [R] Mann-Whitney by group

2012-07-10 Thread Oxenstierna
This works very well--thanks so much. By way of extension: how would one extract elements from the result object? For example: thing<=apply(Dtb[,3:10], 2, function(x) wilcox.test(x~Dtb$Group)) summary(thing)$p.value Does not provide a list of p-values as it would in a regression object. Idea

Re: [R] Mann-Whitney by group

2012-07-07 Thread David L Carlson
David L Carlson Associate Professor of Anthropology Texas A&M University College Station, TX 77843-4352 > -Original Message- > From: r-help-boun...@r-project.org [mailto:r-help-bounces@r- > project.org] On Behalf Of Oxenstierna > Sent: Friday, July 0

Re: [R] Mann-Whitney by group

2012-07-06 Thread Oxenstierna
Hi David, Thank you for the insight: I could have sworn I added a picture of the data, but providing the actual data is worlds easier to deal with, I'm sure. I've never used dput(), so I entered it using the dataframe in question as the object, and I've pasted the results below. Essentially, I

Re: [R] Mann-Whitney by group

2012-07-06 Thread David L Carlson
Original Message- > From: r-help-boun...@r-project.org [mailto:r-help-bounces@r- > project.org] On Behalf Of David Chertudi > Sent: Friday, July 06, 2012 9:15 AM > To: r-help@r-project.org > Subject: [R] Mann-Whitney by group > > Hello, > > I'm having some i

[R] Mann-Whitney by group

2012-07-06 Thread David Chertudi
Hello, I'm having some issues grouping cases for some Mann-Whitney U tests I'm attempting to run. I'm willing to use wilcox.test if it'll work; I've also tried wilcox_test() from the "coin" package. Here's the deal: for each column (A through H), I would like to run the two-sample independent

Re: [R] Mann Kendall Test for Trend

2011-09-02 Thread R. Michael Weylandt
I'd suggest that you look into using a time series class to organize your data rather than just keeping levels and times next to each other. This will also make it alot easier to work with your data in specific time-series sort of ways. I really like the xts class and you can get to it with someth

Re: [R] Mann Kendall Test for Trend

2011-09-02 Thread ScottM
Michael, Cheers for the input - still learning "syntax" as I go - very new to the use of programming language and having to self teach as part of my PhD. The input data was fine - it was the call on the R website which was confusing me - by defining the location of the actual data in the second

Re: [R] Mann Kendall Test for Trend

2011-09-02 Thread R. Michael Weylandt
I don't have the Kendall package at my fingers, but it seems like you have some deeper trouble with R syntax if you are writing things like MannKendall(1:27(data),data) when you know that MannKendall only takes one argument. Can you verify that your data object actually has a full set of data to

[R] Mann Kendall Test for Trend

2011-09-02 Thread ScottM
Hi there, I'm trying to apply the Mann Kendall test for trend analysis of a time series. I have downloaded and installed the package Kendall and subsequently loaded it into the software. My time series is a .txt file with 2 columns - column 1 is the year (1985 - 2009) and column 2 is the corres

Re: [R] mann-whitney test with more groups

2009-11-18 Thread Peter Dalgaard
Peter Ehlers wrote: Sorry, correction below. Peter Ehlers wrote: Kim Vanselow wrote: Dear r-helpers, I want to test groups of samples for significant differences. Question: Does Group1 differ significantly from group2. This is a question to be answered by mann-whitney-u-test. I know that I c

Re: [R] mann-whitney test with more groups

2009-11-18 Thread Peter Ehlers
Sorry, correction below. Peter Ehlers wrote: Kim Vanselow wrote: Dear r-helpers, I want to test groups of samples for significant differences. Question: Does Group1 differ significantly from group2. This is a question to be answered by mann-whitney-u-test. I know that I can use wilcox.test wi

Re: [R] mann-whitney test with more groups

2009-11-18 Thread Peter Ehlers
Kim Vanselow wrote: Dear r-helpers, I want to test groups of samples for significant differences. Question: Does Group1 differ significantly from group2. This is a question to be answered by mann-whitney-u-test. I know that I can use wilcox.test with 2 samples. My problem: How can r perform th

[R] mann-whitney test with more groups

2009-11-18 Thread Kim Vanselow
Dear r-helpers, I want to test groups of samples for significant differences. Question: Does Group1 differ significantly from group2. This is a question to be answered by mann-whitney-u-test. I know that I can use wilcox.test with 2 samples. My problem: How can r perform the test automatically if

Re: [R] mann whitney u

2009-08-27 Thread Greg Snow
esday, August 26, 2009 5:19 AM > To: r-help@R-project.org > Subject: [R] mann whitney u > > Dear Sir, > > I am comparing two samples using wilcox.test in R. Literature appears > to describe mann whitney u test as the most appropriate test to use on > my data. > > is

Re: [R] mann whitney u

2009-08-26 Thread Stefan Grosse
On Wed, 26 Aug 2009 12:18:53 +0100 "Mcdonald, Grant" wrote: MG> is the wilcox.test function equivalent to mann-whitney u? Is there Yes, the test is the same. It is also called wilcoxon mann whitney test because the authors created the test independently. MG> a way to gain the U-value as appose

Re: [R] mann whitney u

2009-08-26 Thread David Winsemius
On Aug 26, 2009, at 7:18 AM, Mcdonald, Grant wrote: Dear Sir, I am comparing two samples using wilcox.test in R. Literature appears to describe mann whitney u test as the most appropriate test to use on my data. is the wilcox.test function equivalent to mann-whitney u? When used in it

[R] mann whitney u

2009-08-26 Thread Mcdonald, Grant
Dear Sir, I am comparing two samples using wilcox.test in R. Literature appears to describe mann whitney u test as the most appropriate test to use on my data. is the wilcox.test function equivalent to mann-whitney u? Is there a way to gain the U-value as apposed to the W-value in R? Thank y

Re: [R] Mann Kendall test for time series data

2009-08-23 Thread Gavin Simpson
On Fri, 2009-08-21 at 20:59 -0700, Bin1aya wrote: > Dear All, > > I do not know how to perform Mann kendall test with climate data. Using > Rclimdex i have got trends of temperature and precipitation. Now I would > like to know how significant is trend at 95% level of significance. So > please sug

[R] Mann Kendall test for time series data

2009-08-22 Thread Bin1aya
Dear All, I do not know how to perform Mann kendall test with climate data. Using Rclimdex i have got trends of temperature and precipitation. Now I would like to know how significant is trend at 95% level of significance. So please suggest me. Thank you. Sincerely, Binaya Pasakhala -- View thi

Re: [R] mann-whitney U-test - U-value

2009-07-11 Thread Ted Harding
On 11-Jul-09 18:13:29, Martin Batholdy wrote: > Hi, > I know that I can perform a Mann-Whitney U test with wilcox.test(x,y) > But instead of an U-value I get a W-Value. > Is it possible to change this? The usual definition of the Man-Whitney U test for two samples x of size m) and y (of size n) is

Re: [R] mann-whitney U-test - U-value

2009-07-11 Thread milton ruser
Martin, If I am not wrong the difference is that if you has two levels you get U-test, and W-test for more than two levels. But the test is almost the same. cheers milton On Sat, Jul 11, 2009 at 2:13 PM, Martin Batholdy wrote: > Hi, > > I know that I can perform a Mann-Whitney U test with wi

[R] mann-whitney U-test - U-value

2009-07-11 Thread Martin Batholdy
Hi, I know that I can perform a Mann-Whitney U test with wilcox.test(x,y) But instead of an U-value I get a W-Value. Is it possible to change this? __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the p

[R] Mann-Kendall test

2009-05-13 Thread Rafael Moral
Dear useRs, I've been trying to run a Mann-Kendall test in my data in order to detect trends. I studied the examples given at the Kendall package and I can understand pretty well how it works on time-series data. However, my data consists of values in different sites per year, as I display belo

Re: [R] Mann Whitney test

2009-02-14 Thread Frank E Harrell Jr
2 Fax: (919) 668-7093 E-mail: daniel.more...@duke.edu Rodrigo Fernandes Ramalho Sent by: r-help-boun...@r-project.org 02/14/2009 08:52 AM To r-help@r-project.org cc Subject [R] Mann Whitney test Hi, I have a statistical question. To apply the Mann Whitney test to compare a pair of ve

Re: [R] Mann Whitney test

2009-02-14 Thread Daniel Moreira
Research Drive Durham, North Carolina 27710 Telephone: (919) 681-7132 Fax: (919) 668-7093 E-mail: daniel.more...@duke.edu Rodrigo Fernandes Ramalho Sent by: r-help-boun...@r-project.org 02/14/2009 08:52 AM To r-help@r-project.org cc Subject [R] Mann Whitney test Hi, I have a statistical

[R] Mann Whitney test

2009-02-14 Thread Rodrigo Fernandes Ramalho
Hi, I have a statistical question. To apply the Mann Whitney test to compare a pair of vectors, they must to have the same length ? Thanks, Rodrigo [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.c