Displaying 20 results from an estimated 200 matches similar to: "Help processing large data"
2007 Apr 04
2
selection of character
Hi all,
I have a simple question:
I have a character vector like this
[1] "10_1" "1_1" "11_1" "2_1" "3_1" "4_1" "5_1" "6_1" "7_1" "8_1"
[11] "9_1" "1_3" "2_3" "3_3" "4_3" "1_4" "2_4" "3_4"
2013 Sep 25
1
Computing calculation among two vectors
Hi,
Try:
x<- 1:4
?y<- c("*","/","-","+")
res<-sapply(y,function(i) {x1<-expand.grid(x,x); unlist(lapply(paste0(x1[,1],i,x1[,2]),function(u) eval(parse(text=u))))})
row.names(res)<- as.character(interaction(expand.grid(x,x),sep="_"))
head(res)
#??? *?? /? - +
#1_1 1 1.0? 0 2
#2_1 2 2.0? 1 3
#3_1 3 3.0? 2 4
#4_1 4 4.0? 3 5
#1_2 2 0.5
2008 Jan 15
1
help with reshaping data into long format (correct question)
Dear list,
I have the following data set
id 1 2 3 4 5 6 7 8 9 10
disease a b c d e f g h i j
age 23 40 32 34 25 32 22 35 29 21
city NY LD NY SG NY LD VG SA LD SG
sex 1 1 2 2 2 2 1 1 1 2
treat_a y y y y
treat_b n n n n n n
ques1_1 2 4 5 6 8 3 1 2 4 5
ques1_2 6 4 5 12 10 9 8 4 5 7
2012 Aug 19
1
radarchart axis scaling
Hello
I created a radar chart using the function of ?radarchart? from the
?fmsb? package in R software.
The matrix I am using is as follows:
x<-c(c(rep(4.5,7),c(rep(0,7)), 3.34, 3.28, 1.37, 1.12, 3.52, 4.07, 3.66));
a<-matrix(x,nrow=3, ncol=7,byrow=T)
I would like to show the range of c(0,5) on the axis instead of
c(0,100) or c(0,1).
I really appreciate it if any body can guide me.
2009 Jun 07
2
Need some help in R : value more than equals to a row.
Hallo,
I was trying some code, but couldn't make one step of the code properly.
Can anybody please help me?
I have one matrix like this
> values
[,1] [,2] [,3] [,4] [,5]
[1,] 0.7777778 0.36111111 0.22222222 0.1388889 0.0000000
[2,] 1.0000000 0.00000000 0.53846154 0.0000000 0.5384615
[3,] 0.5200000 0.48000000 0.64000000 0.0000000 0.8800000
[4,] 0.8928571
2011 Jul 12
3
Help in error removal
Dear all,
I am new to programming in R.
I deal with microarray data,which is a data frame object type. I need to carry out a few statistical procedures on this, one of them being the pearson corelation. I need to do this between each row which is a gene. So the desired result is a square matrix with the pearson corelation value between each row. So the first column would be (1,1)=0,(1,2),(1,3)
2011 Sep 21
3
RESEND: Mixmonitor command parameter problem on Asterisk 1.8.4
Is anyone can help me with this ? I'm really desperate.
Thx in ad.
From: asterisk-users-bounces at lists.digium.com
[mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Ikka - Mitra
Kreasindo
Sent: Wednesday, September 14, 2011 5:02 PM
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: [asterisk-users] Mixmonitor command parameter problem on
2011 Apr 06
1
Creating a symmetric contingency table from two vectors with different length of levels in R
Hello,
How can I create a symmetric contingency table from two categorical vectors
having different length of levels?
For example one vector has 98 levels
TotalData1$Taxa.1
[1] "Aconoidasida" "Actinobacteria (class)"
"Actinopterygii" "Alphaproteobacteria"
[5] "Amoebozoa"
2009 Apr 13
1
value of strptime in R 1.8.0
Dear R friends,
I have a data frame, I need to get a time interval between the two columns.
The times are recorded in 24 hour clock. My data frame is called
version.one.
my commands are:
t.s.one<-paste(version.one[,9])
t.s.two<-paste(version.one[,61])
x<-strptime(t.s.one,format="%H:%M")
x
y<-strptime(t.s.two ,format="%H:%M")
y
z<-difftime(y,x, units =
2011 Oct 24
1
nonlinear model
Hello,
I am trying to do a nonlinear model using the "nls" command in R software.
The data I am using is as follows:
A<-c(7.132000,8.668667,9.880667,8.168000,10.863333,10.381333,11.059333,7.589333,4.716667,4.268667,7.265333,10.309333,8.456667,13.359333,8.624000,13.571333,12.523333,4.084667
,NaN,NaN)
2013 May 22
1
Rplot save problem after using "identify" with R version 3.0.0
Hello R experts,
I am having an wired problem to save my RPlot after I use "identify"
option.
Points are identified properly, but when I try to save that image I get
error as:
" Error: first argument must be a string (of length 1) or native symbol
reference" and the image without identified points are saved. I am having
this problem after I upgraded to R version 3.0.0. (Mac).
2011 Apr 14
1
Error is assocplot
Hello,
I have a contingency table showing relation between two datasets. I tried
to see association among them with the assocplot, but it shows
error. mosaicplot of the same data worked perfectly.
Can anyone please help me.
Con.table=as.matrix(Con.table)
> dim(Con.table)
[1] 27 27
> assocplot(Con.table,space = 0.3,
+ main = NULL, xlab = NULL, ylab = NULL)
Error in
2013 May 17
1
Problem with ordiellipse coloured factor in Vegan
Hello R experts,
I am trying to plot ordiellipse for my data but the col according to
factors.
Metabolites_raw= read.csv(file.choose(), head = TRUE) #file
21Metabolites.csv
Metabolites_t=t(Metabolites_raw[,2:82])
ord <- metaMDS(Metabolites_t, distance="bray")
symbol=as.numeric(Metab_metadata$LandType)
col.list <-
2017 Jun 26
3
Request for help - adding text files to a data frame
Hello Everyone,
I have a data frame which looks something like this:
V1 <-c(1,2,3)
V2 <-c(5,6,7)
V3 <-c(9,10,11)
df <- data.frame(V1,V2,V3)
I want to add couple of text files at the beginning of df and save
the df as a csv file.
The csv file should look something like this:
"AAAAAAAA"
"BBBBBBBBB"
"CCCCCCCCC"
V1 V2 V3
1 5 9
2
2005 Jul 18
2
scriptaculous dragdrop.js empty list problem
Hi,
I''ve just been having a look at the scriptaculous drag-n-drop library, which
looks exceedingly good. I''m running across a show-stopper here, though -
something that''s cropping up in both the online demos and my own test scripts. If
I set up two lists so that I can drag items between them, then if either list
becomes empty, I can''t drag elements back into
2011 Jul 20
3
Coercing Logical array to Numeric array
Dear all,
Coercing a logical vector to a numeric one is easy. The as.numeric function is used. However what do we use when we have a matrix or an array?
Sumona
2009 Jun 10
1
R: Best way to plot a Matrix of all possible pair combinations
Hallo R Users,
Please help
I have some distance matrix data like
> M[1:10,]
[,1] [,2] [,3] [,4] [,5] [,6]
[1,] 0.8750000 0.5000000 0.5000000 0.3750000 0.6250000 0.00000000
[2,] 0.8928571 1.0000000 0.0000000 0.8928571 0.1071429 0.00000000
[3,] 0.8928571 1.0000000 0.0000000 0.8928571 0.1071429 0.00000000
[4,] 0.8928571 1.0000000 0.0000000 0.8928571
2008 Jan 22
2
extension to nlme self start SSmicmen?
Dear list,
Has anyone created a version of SSmicmen that allows testing for group
differences? The basic Michaelis-Menten equation is:
(Bmax * X) / (Kd + X).
The nlme package allows modeling of random effects for Bmax and Kd as
needed, but I curious how I can build in group differences? I have
receptor binding data for strains of mice, and following Pinheiro and
Bates' lead in their
2020 Nov 18
1
LTO with Linker Scripts
On 2020-11-18, Teresa Johnson via llvm-dev wrote:
>AFAIK this effort stalled when Tobias changed jobs. Adding Sergei who may
>know the current status of the support within Qualcomm.
>
>Teresa
>
>On Wed, Nov 18, 2020 at 11:12 AM Mitra, Gaurav via llvm-dev <
>llvm-dev at lists.llvm.org> wrote:
>
>> Hello All,
>>
>>
>>
>> I’d like to pick up