Displaying 14 results from an estimated 14 matches for "interaction2wt".
2007 Dec 16
0
[HH] changing font size in interaction2wt
Hi,
I would like to change font sizes (more generally the cex) in plots
produced by the function "interaction2wt" of the "HH" package.
Here is an example (from the interaction2wt example) of what I have
tried:
--8<---------------cut here---------------start------------->8---
rm(list = ls(all = TRUE))
rm(list = c(ls()))
library("HH")
## From the example:
vulcan <- read.tab...
2008 Aug 24
1
Plotting 3 way Anova
Hi
I'd really like to get a bar plot showing the means of my anova data. I have looked everywhere and can only seem to find instructions for 2 way anova's.
I basically want to look at the mean condition of my subjects spilt by age, sex and year (as a factor rather than a continuous variable, hence Anova and not Ancova). and want to show it firstly as a bar graph with standard error. I
2010 Feb 09
1
Interpretation of high order interaction terms.
I have difficulties in interpreting high order interaction terms in
high-way ANOVA.
According to Introductory Statistics with R by Peter Dalgaard (Section 12.5),
"The exact definition of the interaction terms and the interpretation of their
associated regression coefficients can be elusive. Some peculiar things
happen if an interaction term is present but one or more of the main
effects are
2007 Apr 09
1
How to solve differential and integral equation using R?
Hello,
I want to know if there are some functions or packages to solve differential
and integral equation using R.
Thanks.
Shao chunxuan.
[[alternative HTML version deleted]]
2009 Oct 07
2
Plotting 1 covariate, 3 factors
I'm interested in plotting a y with an x factor as the combination of 2
factors and colour with respect to a third, which the code below does with
interaction.plot(). However, this is because I redefine the x to be 1
factor. Is there a way of getting it to plot without redefining it, and
ideally to not join up the lines BETWEEN levels a and b, but just join those
between after and before for
2010 Mar 06
2
Plot interaction in multilevel model
I am trying to plot an interaction in a multilevel model. Here is some
sample data. In the following example, it is longitudinal (i.e., repeated
measures), so the outcome, score (at each of the three time points), is
nested within the individual. I am interested in the interaction between
gender and happiness predicting score.
id <- c(1,1,1,2,2,2,3,3,3)
age <-
2007 Mar 25
1
anova-interaction
HI,
I am trying to perform ANOVA with 2 factors:
material (3), temperature(3). The interaction is significant. I tried
something like, ( summary(avt, split=list("temp:mat"=list("15"=1,
"70"=2, "125"=3))) is not correct).
Thanks,
av <- aov(time ~ mat*temp, data=dados)
avt <- aov(time ~ temp/mat)
summary(avt,
2009 Dec 19
2
simple main effect.
Hi, I'm a bit new to R and I would like to know how can I compare simple
main effects when using the aov function.
I'm doing a mixed model ANOVA with two between subjects variables and one
within.
When I get an interaction of two of the variables I don't know how to check
for simple main effect of that interaction (A at B1 and A at B2 for
example).
The aov function is very simple but
2010 Oct 06
2
ANOVA boxplots
Dear list,
i have a quick and (hopefully) straightforward question regarding the
plot-function after running aov. if i plot an equation like this:
plot(dataSubjects~factorA, data=mydata)
R gives me the boxplots for this particular factor A. my model, however
contains several factors. is there a straightforward way to plot barplots
for a specific factor with the constraint that those values
2006 Dec 28
1
split-plot multiple comparisons
Dear R user,
I am new with split-plot designs and I have problems with multiple comparisons.
This data correspond to an split-plot experiment with two replications
(bloque).(Hoshmand, 2006 pp 138). Briefly, the whole-plot factor is
Nitrogen concentration ("nitrogeno") and the subplot factor is the variety
of corn ("hibrido"). The aim is to determine if major differences
2010 Mar 13
1
Help needed: Split-split plot analysis
Hello,
I am very new to R but would like to use the software to analyse the
attached data. The experiment followed a split-split plot design
There were two blocks and the whole plot is CO2 with two levels. The
sub-plot is soil temperature with three levels and the sub-sub plot is soil
moisture content with three levels (low, intermediate and high-similar for
soil temperature). I had 7 plants per
2012 May 29
2
use xyplot to plot mean and CI by groups
Dear R users,
I am trying to use xyplot to draw group mean and CI. The following is the
sample code. But I want:
1. Use different colors and symbols to draw individual points, CI and
the lines connect group means from different time points;
2. Add jitters to x axis to allow CIs not be overlapped
Could anyone modify the attached code to achieve this?
Thanks
library(lattice)
2006 Sep 05
4
Two submitted packages
## This example runs in R 2.3.1 and does not run in R 2.4.1. I am
## raising it here for two questions: one on how to debug functions
## inside a namespace, the other on how to control clipping.
tmp <- data.frame(x=1:5, y=1:5, a=factor(c(1,1,1,1,1), levels=1:4))
xyplot(y ~ x,
data=tmp, ylim=c(1.5,4.5),
panel=function(x,y, ...) {
cpv <- current.viewport()
2012 Mar 25
2
avoiding for loops
I have data that looks like this:
> df1
group id
1 red A
2 red B
3 red C
4 blue D
5 blue E
6 blue F
I want a list of the groups containing vectors with the ids. I am
avoiding subset(), as it is
only recommended for interactive use. Here's what I have so far:
df1 <- data.frame(group=c("red", "red", "red", "blue",