Displaying 3 results from an estimated 3 matches for "uneual".
Did you mean:
unequal
2012 Jan 11
3
turning a list of vectors into a data.frame (as rows of the DF)?
As a newer R practicioner, it seems I stump myself weekly (at least) with issues that have spinning my wheels. Here is yet another... I'm trying to turn a list of numeric vectors (of uneual length) inot a dataframe. Each vector held in the list represents a row, and there are some rows of unequal length. I would like NAs as placeholders for "missing" data in the shorter vectors. I think I'm missing something quite basic.
v1 <- c(1,2,3,4)
v2 <- c(1,2)
lst1 <...
2009 Nov 30
1
multiple comparisons with non homogeneus variances
This is a mixed question, between theory and practice.
I have a dataset with a continous variable grouped by a 33 levels
factor. After having log-tranformed my original data I can assume the
normality of my data but I have two strong departures from the basic
assumptions for anova and t tests: *unbalanced data* (some groups
contain ten samples, others hundreds) and *non homogenity of
variances*
2012 Jul 05
2
vector entry in matix
hi,
i'm trying to figure out if there's any possibility to write a whole vector
into a matrix or data.frame or something like that. i don't mean
transormation. Here an example:
[,1] [,2]
[1,] "a" "d"
[2,] "b" "e"
[3,] "c" "f"
where e.g. a is a<-c(0,1) vector of length 2, b a vector of length 4,... (i
know that