search for: id6

Displaying 13 results from an estimated 13 matches for "id6".

Did you mean: id
2012 Feb 26
1
Matrix problem to extract animal associations
...ndividuals a unique Group ID containing that one individual. i.e. ID Group 1 ID1 1 2 ID3 2 3 ID4 3 4 ID5 4 5 ID7 5 6 ID8 6 7 ID9 7 What I need assistance with is allocating associations with a unique group id. i.e. If we have interactions between "ID2_ID6", "ID6_ID2", "ID6_ID10", "ID10_ID6" as in the example code... ID Group 1 ID1 1 2 ID3 2 3 ID4 3 4 ID5 4 5 ID7 5 6 ID8 6 7 ID9 7 ## 8 ID2 8 9 ID6 8 10 ID10 8 ## The code also needs to robust enough to recognize i...
2011 Apr 20
1
How to check if a value of a variable is in a list
...have characteristics on all the friends listed in the data and I want to restrict my data to only those friends that I also have as respondents. The data (without characteristics) look like this: *resp f1 f2 f3 f4 f5* ID1 ID5 ID37 ID6 ID2 ID53 ID2 ID1 ID4 ID17 NA NA ... Now, let's say that "ID37" never appears as a respondent, then I want to replace that value with a NA so that it looks like this: *resp f1 f2 f3 f4 f5* I...
2016 Dec 20
2
colnames for data.frame could be greatly improved
...;id%03d",1:K), N, TRUE), # large groups (char) id3 = sample(sprintf("id%010d",1:(N/K)), N, TRUE), # small groups (char) id4 = sample(K, N, TRUE), # large groups (int) id5 = sample(K, N, TRUE), # large groups (int) id6 = sample(N/K, N, TRUE), # small groups (int) v1 = sample(5, N, TRUE), # int in range [1,5] v2 = sample(5, N, TRUE), # int in range [1,5] v3 = sample(round(runif(100,max=100),4), N, TRUE) # numeric e.g. 23.5749 )...
2013 Jul 02
2
Recoding variables based on reference values in data frame
...) at 3000+ genetic locations (SNP1, SNP2, SNP3...). A small subset of the data is shown below: SNP_ID SNP1 SNP2 SNP3 SNP4 Maj_Allele C G C A Min_Allele T A T G ID1 CC GG CT AA ID2 CC GG CC AA ID3 CC GG nc AA ID4 _ _ _ _ ID5 CC GG CC AA ID6 CC GG CC AA ID7 CC GG CT AA ID8 _ _ _ _ ID9 CT GG CC AG ID10 CC GG CC AA ID11 CC GG CT AA ID12 _ _ _ _ ID13 CC GG CC AA The name of the data file is Kgeno. What I would like to do is recode all of the genot...
2006 Mar 05
2
Wishlist: merge and subset to keep attributes (PR#8658)
...are gone after merging or subsetting. It would be very helpful, if this could be changed. With kind regards, Ulrike ----------------------------------------------------------------- data1 <- data.frame(id=c("Id1","Id2","Id3","Id4","Id5","Id6"), time=c(3,4,3,5,9,4)) vallab <- c(3,4,5,9) names(vallab) <- c("day","night","twilight","unknown") attr(data1$time,"value.labels")<-vallab str(data1) ## gives the output: ## `data.frame': 6 obs. of 2 variables: ## $ id...
2014 Jan 19
5
how to replace <NA> values
Dear R community   I have a large data set contain some empty cells. Because of that,  may be I am wrong, <NA> values are produced. Now I want replace both empty and <NA> values with zero.   Elder1 <- data.frame(   ID=c("ID1","ID2","ID3","ID6","ID8"),   age=c(38,35,"",NA,NA)) Output I am expecting   ID   age ID1  38 ID2  35 ID3  0 ID6  0 ID8  0   In advance I thank your help. -- View this message in context: http://r.789695.n4.nabble.com/how-to-replace-NA-values-tp4683831.html Sent from the R help mailing lis...
2016 Dec 27
0
colnames for data.frame could be greatly improved
...N, TRUE), # large groups (char) > id3 = sample(sprintf("id%010d",1:(N/K)), N, TRUE), # small groups (char) > id4 = sample(K, N, TRUE), # large groups (int) > id5 = sample(K, N, TRUE), # large groups (int) > id6 = sample(N/K, N, TRUE), # small groups (int) > v1 = sample(5, N, TRUE), # int in range [1,5] > v2 = sample(5, N, TRUE), # int in range [1,5] > v3 = sample(round(runif(100,max=100),4), N, TRUE) # numeric...
2016 Apr 04
2
multiple bar plot annotation text labelling
...; horiz-adv-x="927" d="M 156,0 L 156,153 515,153 515,1237 197,1010 197,1180 530,1409 696,1409 696,153 1039,153 1039,0 156,0 Z"/> </font> </defs> <defs class="TextShapeIndex"> <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21"/> </defs> <defs class="EmbeddedBulletChars"> <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)"> <path d="M 580,1141...
2016 Apr 04
0
multiple bar plot annotation text labelling
...t; horiz-adv-x="927" d="M 156,0 L 156,153 515,153 515,1237 197,1010 197,1180 530,1409 696,1409 696,153 1039,153 1039,0 156,0 Z"/> </font> </defs> <defs class="TextShapeIndex"> <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21"/> </defs> <defs class="EmbeddedBulletChars"> <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)"> <path d="M 580,1141...
2006 Mar 05
0
Wishlist: xtabs and table to optionally use attribute value labels (PR#8659)
...res with such data. Hoping this wish will make it to the list of wishes fulfilled some day. With kind regards, Ulrike ----------------------------------------------------------------- data1 <- data.frame(id=c("Id1","Id2","Id3","Id4","Id5","Id6"), time=c(3,4,3,5,9,4)) vallab <- c(3,4,5,9) names(vallab) <- c("day","night","twilight","unknown") attr(data1$time,"value.labels")<-vallab str(data1) ## gives the output: ## `data.frame': 6 obs. of 2 variables: ## $ id...
1997 Jan 31
10
Linux virus
ugh :) Today I became infected with the bliss virus, any info on this would be appreciated! How do I scan for files infected and is it possible to remove it? I first noticed the infection when running a program (not as root) messages flashed on the screen about transversing directories and such. The program (gimp) had been working fine since I downloaded the binary for gimp from their main
2007 Jan 30
19
PuppetReporting
hi I''ve read about PuppetReporting at the Trac website. Apparently you are working on integrating the benchmark tests for every type in ruby. Do you have any idea when this will all get implemented? This is a crucial part (and actually a necessary feature) in the configuration management system we have set up using Puppet. grtz Koen Vereeken
2012 Jun 24
0
nouveau _BIOS method
...SEN.ECON.GPIC.C 0540: 54 59 50 08 4c 30 31 43 08 56 46 4e 30 08 56 46 TYP.L01C.VFN0.VF 0550: 4e 31 08 56 46 4e 32 08 56 46 4e 33 08 56 46 4e N1.VFN2.VFN3.VFN 0560: 34 08 00 48 05 4e 56 47 41 20 4e 56 48 41 20 41 4..H.NVGA NVHA A 0570: 4d 44 41 20 44 49 44 36 20 44 49 44 37 20 44 49 MDA DID6 DID7 DI 0580: 44 38 20 45 42 41 53 20 43 50 53 50 20 45 45 43 D8 EBAS CPSP EEC 0590: 50 20 45 56 43 50 20 58 42 41 53 20 4f 42 53 31 P EVCP XBAS OBS1 05a0: 20 4f 42 53 32 20 4f 42 53 33 20 4f 42 53 34 20 OBS2 OBS3 OBS4 05b0: 4f 42 53 35 20 4f 42 53 36 20 4f 42 53 37 20 4f OBS5 OBS6 OB...