search for: whose

Displaying 20 results from an estimated 5838 matches for "whose".

Did you mean: those
2010 Feb 02
2
finding files whose name does NOT contain a given character
Unluckily I dela with miRNA files whose name may contain the character "*". Because of the special meaning of "*" I have to remove it. I found out how to make list.files() extract only those file names which contain a "*" Namely: # list.files(pattern="\\*") Now I have to process all files whose n...
2006 Feb 17
2
Grouping and Averaging in Table
...22 89 2 31 44 2 88 11 .... .... 1200 64 32 1 100 150 1 45 32 1 99 100 2 150 33 2 22 87 2 71 31 ... ... 1100 31 34 Totally 1000+1200+1100 rows. Now, I need to group by first column and average then second and third column to get a table as follows as follows: 1 Avg. of all second col. values whose first col value is 1 Avg. of all third col. values whose first col value is 1 2 Avg. of all second col. values whose first col value is 2 Avg. of all third col. values whose first col value is 2 .. .. 1200 Avg. of all second col. values whose first col value is 1200 Avg. of all third col. val...
2004 Mar 19
2
for loop or Hmisc library trap.rule function syntax error
...ages after each of the last 2 lines. I have tried searching the manuals, Hmisc documentation, contributed manuals, help archives, and Internet. I am running R 1.7.1 under Windows 2000 (I will upgrade when my imminent OS upgrade happens). My data was successfully entered and displayed as data.df whose first row is column labels, whose subsequent rows are separate subject results, whose 2nd to 7th columns are numeric control results (for observations at 0, 30, 60, 90, 120, and 180 min), and whose 8th to 13th columns are numeric treatment results. I am trying to enter the control and test area...
2010 Jun 26
2
use a data frame whose name is stored as a string variable?
...compare many data frames within 2 nested for loops. In the first iteration of the loop I could concatenate x and 1 and then use it to represent the data frame. I'm open to a better solution. Thanks, Seth Myers -- View this message in context: http://r.789695.n4.nabble.com/use-a-data-frame-whose-name-is-stored-as-a-string-variable-tp2269095p2269095.html Sent from the R help mailing list archive at Nabble.com.
2012 Apr 23
3
Selecting columns whose names contain "mutated" except when they also contain "non" or "un"
Hello All, Started out awhile ago trying to select columns in a dataframe whose names contain some variation of the word "mutant" using code like: names(KRASyn)[grep("muta", names(KRASyn))] The idea then would be to add together the various columns using code like: KRASyn$Mutant_comb <- rowSums(KRASyn[grep("muta", names(KRASyn))]) What I di...
2013 Jul 04
5
[Bug 9997] New: File listed only whose attributes have changed for single '-v' option
https://bugzilla.samba.org/show_bug.cgi?id=9997 Summary: File listed only whose attributes have changed for single '-v' option Product: rsync Version: 3.0.9 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P5 Component: core AssignedTo: wayne...
2009 Nov 04
1
Search values and create a new matrix
Hi You wrotte me in R help and I´m very gratefull. I couldn´t reply because an illness. I writte this to see if you can help to solve. I´m a begginer (I´m 20 years old ) but I´m trying to learn more about this program also I´m learning Octave. I need to create a matrix in R whose values depends on the values of other matrix. You see: I have a first "R" matrix whose first row and first colum are a "key/title" in my case numbers. Imagine R has a size N,M The second matrix "Z" has an N-1,2 size. In this new matrix the second column on Z is equ...
2009 Sep 08
2
[LLVMdev] Finding the functions whose addresses are taken.
Hi, How to find in a module, the list of functions whose addresses are ever taken into some variables? - Sanjiv
2010 Feb 26
7
How to add a variable to a dataframe whose values are conditional upon the values of an existing variable
Hi everyone, I am at my wits end with what I believe would be considered simple by a more experienced R user. I want to know how to add a variable to a dataframe whose values?are conditional?on the values of an existing?variable.?I can't seem to make an ifelse statement work?for my situation.?The existing variable?in my dataframe is?a character variable named DOW which contains abbreviated day names (SAT, SUN, MON.....FRI). I want to add a numerical variable...
2010 Jun 18
4
Drawing sample from a circle
Hi, I would like to draw 10 uniformly distributed sample points from a circle with redius one and centered at (0,0). Is there any R function to do that?   Thanks, [[alternative HTML version deleted]]
2012 May 03
5
Identifying the particular X or Y in a sorted list
...C are the Concentration of drug in blood on day 1 and day 4, D is the difference in conc. To do this in R I have written a code as follows, identified the number of patients who have more concentration on day 4 . Here I want to identify specifically the patient ID (is he patient 1 or 2 or 5 and 7), whose concentration is more. How to write a code to get the list of A (patient ID whose difference is more on day 4). Data<-(myDf$B-myDf$C) sum(Data>0) A B CD (B-C) 1 14 10 4 2 12 7 5 3 11 15 -4 4 8 3 5 5 1 8 -7 I appreciate your help, thank you very much in advance. Regards [[alternat...
2011 Oct 25
1
merging to data.frames whose columns are different but follow a pattern.
...'s and the time dimension T. Since IDHOUS and IDPERS are not the same I cannot use /merge() /. Doing the task "by hand" in a excel spread sheet or any equivalent is possible but would probably take ages. So my question is: Does anyone know a way, a command, a trick to merge two files whose columns are different but follow a pattern as described above? I am gratful for any kind of input. Manuel Steiner -- View this message in context: http://r.789695.n4.nabble.com/merging-to-data-frames-whose-columns-are-different-but-follow-a-pattern-tp3937376p3937376.html Sent from the R help ma...
2019 Aug 09
3
Underscores in package names
On 09/08/2019 2:41 p.m., Gabriel Becker wrote: > Note that this proposal would make mypackage_2.3.1 a valid *package name*, > whose corresponding tarball name might be mypackage_2.3.1_2.3.2 after a > patch. Yes its a silly example, but why allow that kind of ambiguity? > CRAN already has a package named "FuzzyNumbers.Ext.2", whose tarball is FuzzyNumbers.Ext.2_3.2.tar.gz, so I think we've already lost that...
2005 Jan 26
4
apply for nested lists
Hi, I am working with lists whose terms are lists whose terms are lists. Although the real ones contain locuslink identifiers and GO annotations (I work with the Bioconductor GO) package, I have prepared an simplified example of what I have and what I would like to do with it: Imagine I have a list such as: tst.list<-list(&...
2016 Mar 08
11
Deleting function IR after codegen
...:getDISubprogram was walking the function body to find the subprogram. This is trivial to fix as functions now have !dbg on them. - The AsmPrinter is calling canBeOmittedFromSymbolTable on GlobalValue’s which then walks all their uses. I think this should be done earlier in codegen as an analysis whose results are available to the AsmPrinter. - BB’s whose addresses are taken, i.e. jump tables, can’t be deleted. Those functions will just keep their IR around so no changes there. With the above issues fixed, I can run make check and pass all the tests. Comments very welcome. Cheers, Pete
2008 Feb 29
2
How to convert the "user coordinate system" in R graph to "normal coordinate system" whose origin is the upper-left cornner of the drawing area?
Dear friends, The user coordiante system in the R graphics is easy to understand as it simply corresponds to the range of values on the axes of the plot. However, sometimes, we want to kown the coordinates of a region in other system, e.g., the normal coordinate system whose origin is the the upper-left cornner of the drawing area which is used to set the hot regions in the HTML image maps. Is there any suggestion? For example, I execute the code, > png("x.png", width = 480, height = 480, + pointsize = 12, bg = "white", res = 100); &g...
2009 Sep 08
0
[LLVMdev] Finding the functions whose addresses are taken.
...the same way. Find the uses of them that are not "Load" or "Store" instructions with the global value as the pointer operand. On Tue, Sep 8, 2009 at 12:20 PM, Sanjiv Gupta<sanjiv.gupta at microchip.com> wrote: > Hi, > How to find in a module, the list of functions whose addresses are ever > taken into some variables? > > - Sanjiv > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu         http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >
2020 Oct 26
3
[Bug 3224] New: SSH should be (optionally) clear whose password is asked for
https://bugzilla.mindrot.org/show_bug.cgi?id=3224 Bug ID: 3224 Summary: SSH should be (optionally) clear whose password is asked for Product: Portable OpenSSH Version: 8.3p1 Hardware: Other OS: Linux Status: NEW Severity: enhancement Priority: P5 Component: ssh Assignee: unassigned-bugs at...
2006 Oct 31
0
6202015 fmd should only load plug-ins whose filenames end in .so
Author: mws Repository: /hg/zfs-crypto/gate Revision: 350b29b024d8b672585c7a66fcea71985a54f77f Log message: 6202015 fmd should only load plug-ins whose filenames end in .so 6369961 fmd emits identical diagnosis after repair when case was never closed 6385004 mc-amd driver leaks property string on attach 6385007 fmd is not decrementing buf total when cases are closed Files: update: usr/src/cmd/fm/fmd/common/fmd.c update: usr/src/cmd/fm/fmd/commo...
2013 Dec 02
1
virsh detach typo
[root at vmhost vms]# virsh detach-disk puppet vdb error: No found disk whose source path or target is vdb [root at vmhost vms]# virsh --version 0.10.2 [root at vmhost vms]# This probably was solved already but if not, "No found disk" probably sounds better if it was "No disk found"