Displaying 20 results from an estimated 20000 matches similar to: "a MANOVA type function"
1998 Nov 11
1
MANOVA / Hotelling's Test
Hi everybody ...
I have to perform Hotteling's T^2 Test - more generally a MANOVA - on a
set of data. Is there a (simple?) possibility to do it in R?
The somewhat obvious way to do it would be
> summary(aov(Y ~ x1 + x2 ... + xn))
where Y would be a two-column matrix.
But this does not work in any possible combination of matrix or factor
dimensions! Is it principally not possible
1999 Apr 09
1
manova in R
Dear R-users,
Does anybody know if analogs of the following S-plus functions are
available (or planned to be) in R:
manova - multivariate analysis of variance
faces - Chernoff faces plot
spin - 3D visualization of data
Another thing: are there functions for solving linear programming
problems in R or Splus?
Thank you in advance,
Sergei
2012 Mar 19
1
car/MANOVA question
Dear colleagues,
I had a question wrt the car package. How do I evaluate whether a
simpler multivariate regression model is adequate?
For instance, I do the following:
ami <- read.table(file =
"http://www.public.iastate.edu/~maitra/stat501/datasets/amitriptyline.dat",
col.names=c("TCAD", "drug", "gender", "antidepressant","PR",
2006 Feb 16
2
MANOVA: how do I read off within and between Sum-of-Squares info from the manova result?
Hi all,
I am experimenting the function "manova" in R.
I tried it on a few data sets, but I did not understand the result:
I used "summary(manova_result)"
and "summary(manova_result, test='Wilks')"
and they gave a bunch of numbers...
But I need the Sum-of-Squares of BETWEEN and WITHIN matrices...
How do I read off from the R's manova results?
Any
2005 Jan 20
1
confidence intervals in Manova and Mancova in Splus
Anyone
I'm wondering how to make confidence intervals (bonferroni or simultaneous)
when using Manova and Mancova in Splus. I 'm doing manova with four variables
on length and four variables on weight (of salmon). The measuring is done on
different time points. I'm working on my master in the field between
biostatistics and fishery biology. If anyone knows a good book on mancova
2012 Mar 13
4
MANOVA and Extra Sums-of-Squares Tests
I would like to conduct an extra sum-of -squares test that compares a full
MANOVA model (with all 1st order interactions) to a reduced model (no
interactions) to determine if I can drop all interactions at the same time.
This is analagous to an extra sum-of-squares F-test in ANOVA, but instead
using MANOVA. Is there a command in R that does this? If not, is there a
command that calculates
2002 Jan 23
3
MANOVA extension of paired t-test?
I would like to test the hypothesis that the difference between pairs, for
several variables, is zero. This is easily done separately for each
variable with:
lm(Y ~ rep(0, nrow(Y)))
where Y is a matrix whose columns are the differences for each variable
between pair members.
However, I would like to get an overall probability across all variables
from a Wilks or Pillai-Bartlett statistic as in
2011 Mar 20
3
manova question
Dear friends,
Sorry for this somewhat generically titled posting but I had a question
with using contrasts in a manova context. So here is my question:
Suppose I am interested in doing inference on \beta in the case of the
model given by:
Y = X %*% \beta + e
where Y is a n x p matrix of observations, X is a n x m design matrix,
\beta is m x p matrix of parameters, and e is a
2004 Jun 02
1
Manova and contrasts
Hi R-users
I'm trying to do multivariate analysis of variance of a experiment with
3 treatments, 2 variables and 5 replicates.
The procedure adopted in SAS is as follow, but I'm having difficulty in
to implement the contrasts for comparison of all treatments in R.
I have already read manuals and other materials about manova in R, but
nothing about specific contrasts were found in them,
2008 Jul 15
2
extracting elements from print object of Manova()
Hi there,
Does anyone know how to extract elements from the table returned by Manova()?
Using the univariate equivalent, Anova(), it's easy:
a.an<-Anova(lm(y~x1*x2))
a.an$F
This will return a vector of the F-values in order of the terms of the model.
However, a similar application using Manova():
m.an<-Manova(lm(Y~x1~x2))
m.an$F
Returns NULL. So does any attempt at calling the
2012 May 17
2
MANOVA with random factor
Dear All
I would need to perform a MANOVA with both fixed (group, sex, group*sex) and
random (brood) effects. I wonder if this is at all possible and if R does that.
At the moment, I only know that I can run a classic MANOVA with R.
Thank you
David
______________________________________________
David Costantini, PhD
http://www.davidcostantini.it
NERC Postdoctoral research associate
2001 Nov 08
2
Manova in R vs. SAS
While I was helping a SAS-using friend with an analysis I noticed some
differences in the multivariate test statistics, approximate F statistics,
and p-values in the manova function using R and proc GLM using SAS. The
univariate coefficients are identical. Is there a reason to expect R and SAS
to give different results?
Thanks,
Bill Kristan.
2013 May 03
1
MANOVA summary.manova(m) :" residuals have rank"
Dear All, I am trying to perform MANOVA. I have table with 504 columns(species) and 36 rows) with two grouping (season and location)
Zx <- Z[c(4:504)]
Zxm <- as.matrix(Z)
m<- manova(Zxm~Season*location, data=Z)
when I do summary.aov, I get respond for each species but summary.manova
summary.manova(m) :" residuals have rank" 24<501.
What can it be the reason for this error
2007 Feb 05
1
manova discriminant functions?
Hello,
I've been playing with the manova() function to do some pretty
straightforward multivariate analyses, and I can't for the life of me figure
out how to get at the discriminant functions used. When predicting several
variables simultaneously, it's important to be able to gauge how much each
variable is contributing to the analysis...a simple p-value isn't really
enough. I
2009 Mar 12
2
MANOVA
Hi All,
I have questions about MANOVA which I am still not sure if appropriately I should use it.
For example I have a data set like this:
BloodPressure (BP) Weight Height
120 115 165
125 145 198
156 99 176
I know that BloodPressure is correlated with both Weight and Height, however colinearity exists between Weight and Height. When I use BP = Weight + Height
2012 Aug 25
2
Standard deviation from MANOVA??
Hi,
I have problem getting the standard deviation from the manova output.
I have used the manova function: myfit <- manova(cbind(y1, y2) ~ x1
+ x2 + x3, data=mydata) .
I tried to get the predicted values and their standard deviation by using:
predict(myfit, type="response", se.fit=TRUE)
But the problem is that I don't get the standard deviation values, I only
2007 Mar 16
2
MANOVA permutation testing
Hi,
I've got a dataset with 7 variables for 8 different species. I'd like
to test the null hypothesis of no difference among species for these
variables. MANOVA seems like the appropriate test, but since I'm
unsure of how well the data fit the assumptions of equal
variance/covariance and multivariate normality, I want to use a
permutation test.
I've been through CRAN looking at
2003 Nov 21
2
kruskal wallis for manova?
Hello,
Is there like the kruskal wallis test in relation to ANOVA (no
restrictions on normallity and variance homogenity) something (in R)
for MANOVA?
thanks
--
Dr.Nicolaas Busscher Universit?t GH Kassel
Nordbahnhofstrasse: 1a, D-37213 Witzenhausen
Phone: 0049-(0)5542-98-1715, Fax: 0049-(0)5542-98-1713
2010 Jun 15
1
MANOVA proportion of variance explained
Hello everybody
After doing a MANOVA on a bunch of data, I want to be able to make some comment on the amount of variation in the data that is explained by the factor of interest. I want to say this in the following way: XX% of the data is explained by A.
I can acheive something like what I want by doing the following:
X <- structure(c(9, 6, 9, 3, 2, 7), .Dim = as.integer(c(3,
2013 Oct 09
1
mixed model MANOVA? does it even exist?
Hi,
Sorry to bother you again.
I would like to estimate the effect of several categorical factors (two
between subjects and one within subjects) on two continuous dependent
variables that probably covary, with subjects as a random effect. *I want
to control for the covariance between those two DVs when estimating the
effects of the categorical predictors** on those two DVs*. The thing is, i