Displaying 20 results from an estimated 10000 matches similar to: "Data.frame Vs Matrix Vs Array: Definitions Please"
2010 Aug 10
3
grep problem decimal points looping
Hi R Users, 
I have been trying to work out how to rename column names using grep,
basically I have generated these column names using tapply:
  [1] "NAME"  "X1.1"  "X2.1"  "X3.1"  "X4.1"  "X5.1"  "X6.1"  "X7.1"  "X8.1" 
 [10] "X1.2"  "X2.2"  "X3.2"  "X4.2" 
2008 Jul 30
2
Bizarre - R crashes on merge
Hi all, 
  I have a large data.frame, 1530 observation with 6 columns. I want to
merge a 7th column, a transformation of the response variable (hospital
admissions), namely 
trans<-sqrt(copd$admissions+0.25)
trans<-data.frame(trans)
And now when I do 
copd2<-merge(copd,trans)
(copd being my original data.frame), R either crashes or is taking an
extremely long time to do the computation. I
2010 Oct 24
1
Optimize parameters of ODE Problem which is solved numeric
Hi,
I have a data-matrix:
> PID
      sato      hrs      fim health
214      3 4.376430 6.582958      5
193      6 4.361825 3.138525      6
8441     6 4.205771 3.835886      7
7525     6 4.284489 3.245139      6
6806     7 4.168926 2.821833      7
5682     7 1.788707 1.212653      7
5225     6 1.651463 1.436980      7
4845     6 1.692710 1.267359      4
4552     5 1.686448 1.220539      6
2011 Jul 31
5
Appending 4 Digits On A File Name
Greetings all,
I would like to append a 4 digit number suffix to the names of my
files for later use.  What I am using now only produces 1 or 2 or 3 or
4 digits.
############
for (i in 1:1000) {
   temp <- (kegg [i,])
   temp <- merge (temp, subrichcdt, by="gene")
      file.name <- paste ("kegg.subrichcdt.", i, ".txt", sep="")
     
2004 Apr 29
2
RE: E164 updater Client
Hi Asterisk users/e164 developers,
I have had an idea on how to improve the functionality of the E164
service.
The idea is that when I'm no longer at my house I actually want to
receive calls at another number
So I have a small software client on my windows desktop and I tell it
I'm no longer here I'm going to be on my mobile (similar to the
no-ip.com dns updater I use)
The client
2011 Sep 27
1
array extraction
hello everyone.
Look at the following R idiom:
 a <- array(1:30,c(3,5,2))
 M <- (matrix(1:15,c(3,5)) %% 4) < 2
 a[M,] <- 0
Now, I think that "a[M,]" has an unambiguous meaning (to a human).
However, the last line doesn't work as desired, but I expected it
to...and it recently took me an indecent amount of time to debug an
analogous case.  Just to be explicit, I would
2011 Aug 01
4
Use dump or write? or what?
Greetings all,
I am calculating two t-test values for each of many files then save it
to file calculate another set and append, repeat.
But I can't figure out how to write it to file and then append
subsequent t-tests.
(maybe too tired ;} )
I have tried to use "dump" and "file.append" to no avial.
ttest_results = tempfile()
two_sample_ttest <- t.test (tempA, tempB,
2011 Aug 03
2
Error message for MCC
Greetings all,
I am getting an error message that is stifling me.
Any ideas?
> ## Define Directories ##
> load_from <- "/home/mcc/Dropbox/abrodsky/kegg_combine_data/"
> save_to <- "/home/mcc/Dropbox/abrodsky/ttest_results/"
>
> ###############################
> ## Define Columns To Compare ##
> compareA <- "log_b_rich"
> compareB
2011 Aug 01
2
Errors, driving me nuts
Greetings all,
I am getting this error that is driving me nuts... (not a long trip, haha)
I have a set of files and in these files I want to calculate ttests on
rows 'compareA' and 'compareB' (these will change over time there I
want a variable here). Also these files are in many different
directories so I want a way filter out the junk...  Anyway I don't
believe that this is
2003 Sep 10
4
recording and taking mean of a set of matrices
I'm looking for a good form in which to store matrix results of a
simulation.
I am doing a simulation study.  Each simulation generates some data
and then analyzes it.  I want to record the results of many
simulations and analyze them.  Say r has the results of one
simulation, and I care about r$coefficients, a vector of coefficients,
and r$var, the estimated covariance matrix.
I'll do
2011 Jun 13
1
Composing two n-dimensional arrays into one n+1-dimensional array
If I have 2 n-dimensional arrays, how do I compose them into a n+1-dimension
array?
Is there a standard R function that's something like the following, but that
gives clean errors, handles all the edge cases, etc.
abind <- function(a,b)  structure( c(a,b), dim = c(dim(a), 2) )
m1 <- array(1:6,c(2,3))
m2 <- m1 + 10
abind(m1,m2)
==>
, , 1
     [,1] [,2] [,3]
[1,]    1    3    5
2011 Aug 07
1
reshape::rename package unable to install !?!
Greetings all,
I have been working with RStudio and R only for a little while.  I
came across a package called 'reshape' that helped me 'rename'
columns.  Unfortunately, my computer got hosed (too much playing with
linux too late at nite) and I had to re-install everything, BUT when I
tried to reinstall 'reshape' or 'reshape2' I COULDN't.  Is there a way
to get
2011 Aug 16
1
Unusual separators
Hi all,
I have a list that I got from a web page that I would like to crunch.
Unfortunately, the list has some unusual separators in it.  I believe
the columns are separated by 1 space and 1 tab.  I tried to insert
this into the read.table( ..., sep=" \t", ...) but got an error that
said something like 'only one byte separators can be used.
I have thought about using a gsub to
2011 Aug 05
2
Which is more efficient?
Greetings all,
I am curious to know if either of these two sets of code is more efficient?
Example1:
 ## t-test ##
colA <- temp [ , j ]
colB <- temp [ , k ]
ttr <- t.test ( colA, colB, var.equal=TRUE)
tt_pvalue [ i ] <- ttr$p.value
or
Example2:
tt_pvalue [ i ] <- t.test ( temp[ , j ], temp[ , k ], var.equal=TRUE)
-------------
I have three loops, i, j, k.
One to test the all of
2012 Nov 09
6
(sin asunto)
Saludos, tengo un problema que no puedo resolver dentro del R
 
Estoy creando una funcion que a partir de un objeto compuesto por diferentes matrices como el que esta a continuacion:
 
[[1]]
    M1 M2 M3 M4
sp1  2  0  1  8
sp2  4  5  2  4
sp3  0  0  4  0
sp4  5  7  5  0
sp5  0  4  0  0
[[2]]
    M3 M2 M4 M1
sp1  1  0  8  2
sp2  2  5  4  4
sp3  4  0  0  0
sp4  5  7  0  5
sp5  0  4  0  0
[[3]]
   
2017 Jun 06
4
integrating 2 lists and a data frame in R
Dear Bert,
thank you for your response. here it is the piece of R code : given 3 data
frames below ---
N <- data.frame(N=c("n1","n2","n3","n4"))
M <- data.frame(M=c("m1","m2","m3","m4","m5"))
C <- data.frame(n=c("n1","n2","n3"),
2013 Sep 05
2
binary symmetric matrix combination
Hi,
May be this helps:
m1<- as.matrix(read.table(text="
y1 g24
y1 0 1
g24 1 0
",sep="",header=TRUE))
m2<-as.matrix(read.table(text="y1 c1 c2 l17
?y1 0 1 1 1
?c1 1 0 1 1
?c2 1 1 0 1
?l17 1 1 1 0",sep="",header=TRUE))
m3<- as.matrix(read.table(text="y1 h4??? s2???? s30
?y1 0 1 1 1
?h4 1 0 1 1
?s2 1 1 0 1
?s30 1 1 1
2009 Aug 17
1
[Fwd: Re: R code to reproduce (while studying) Bates & Watts 1988]]]
Kevin Wright wrote:
> library(nlme)
> m2 <- gnls(conc  ~ t1*(1-t2*exp(-k*time)),
>            data  = df.Chloride,
>            start =  list(
>              t1 = 35,
>              t2 = 0.91,
>              k = 0.22))
So my error was to use nls instead that gnls. Thanks a lot, Kevin.
> summary(m2)
> plot(m2)
> lag.plot(resid(m2), do.lines=FALSE)
>
2017 Jun 06
0
integrating 2 lists and a data frame in R
Hi Bogdan,
Kinda messy, but:
N <- data.frame(N=c("n1","n2","n3","n4"))
M <- data.frame(M=c("m1","m2","m3","m4","m5"))
C <- data.frame(n=c("n1","n2","n3"), m=c("m1","m1","m3"), I=c(100,300,400))
2009 Sep 14
3
Teaching material for children...
Wondering if anyone is aware of resources appropriate for home
schooled pre-teen/teen relatives?
Before anyone suggests, a lengthy google search was unsuccessful.
TIA, V.
-- 
Vince Fulco, CFA, CAIA
612.424.5477 (universal)
vfulco1 at gmail.com
 A posse ad esse non valet consequentia
?the possibility does not necessarily lead to materialization?