search for: radhakrishnan

Displaying 20 results from an estimated 54 matches for "radhakrishnan".

2013 Nov 01
2
Replace element with pattern
Hi, I have a data frame with one column and several rows of the form. "Peak Usage : init:2359296, used:15859328, committed:15892480, max:50331648Current Usage : init:2359296, used:15857920, committed:15892480, max:50331648|-------------------|" I tested the regex Current.*?[\|] in an online tester which greedily matches upto the first 'pipe' character Current
2013 Aug 27
6
Scale of axis for two data sets
Hi, Kbytes RSS rNo 2689632 1450876 1433788 2689632 1450876 1433788 2689632 1450876 1433788 2689632 1450876 1433788 2689632 1450876 1433788 2689632 1450876 1433788 2689632 1450876 1433788 2689632 1460168 1443084 plot(data$rNo,data$RSS,pch=0,type="b",col=36,axes=FALSE, ylab="", xlab="",las=2,lwd=2.5) title(" PID -
2017 Aug 11
1
EOF within quoted string
...[-1,] munged$text <- apply( munged[ , c(3:ncol(munged)) ] , 1 , paste0 , collapse = " ") munged <- munged[,c("V1","V2","text")] print(head(munged$text)) Mohan From: Adams, Jean [mailto:jvadams at usgs.gov] Sent: Thursday, August 10, 2017 8:03 PM To: Radhakrishnan, Mohan (Cognizant) <Mohan.Radhakrishnan at cognizant.com> Cc: R help <r-help at r-project.org> Subject: Re: [R] EOF within quoted string You might want to try some of the suggestions mentioned in this post: https://stackoverflow.com/q/17414776/2140956 Jean On Thu, Aug 10, 2017 at 7:5...
2017 Aug 10
0
EOF within quoted string
You might want to try some of the suggestions mentioned in this post: https://stackoverflow.com/q/17414776/2140956 Jean On Thu, Aug 10, 2017 at 7:59 AM, <Mohan.Radhakrishnan at cognizant.com> wrote: > Hi, > > Reading http://ssc.wisc.edu/~ahanna/20_newsgroups.csv after downloading > it using > > data <- read.csv("20_newsgroups.csv",header=TRUE) > > throws this. > > Warning message: > In scan(file, what, nmax, sep, dec, q...
2007 Jan 08
2
rsync - 2.6.8 ( broken pipe )
Wayne, While testing rsync 2.6.8, I often receive broken pipe error, even though there is no network problem, between Active and Standby nodes. Please clarify. 2007/01/09 02:11:36 [1076] rsync: connection unexpectedly closed (342821 bytes received so far) [receiver] 2007/01/09 02:11:36 [1076] rsync: writefd_unbuffered failed to write 84 bytes [generator]: Broken pipe (32) 2007/01/09
2008 Apr 23
1
(no subject)
...e using Samba/CIFS hp-ux server connecting to Windows ADS and try to create keytab file using net ads create keytab -u Administrator ,but it is unable to create keytab file in the /etc/directory. Please see the attached output file for your reference. Appreciate your help!! Sudheer Radhakrishnan / Capgemini North America P&C / East Business Unit Unix Support / Hosting Mobile: 508 769 2371 http://www.capgemini.com/ <http://www.capgemini.com/> Fax: 508.229.2013 45 Bartlett Street / Marlborough, Ma 01752 Together: the Collaborative Business Experience This message cont...
2007 Jan 24
2
[LLVMdev] patch - update libiberty/psignal to latest prototypes.
...========== --- libiberty/strsignal.c (revision 254) +++ libiberty/strsignal.c (working copy) @@ -557,8 +557,8 @@ void psignal (signo, message) - unsigned signo; - char *message; + int signo; + const char *message; { if (signal_names == NULL) { -- cheers Ramana Ramana Radhakrishnan GNU Tools Celunite Inc (www.celunite.com)
2007 Jan 24
1
[LLVMdev] patch - update libiberty/psignal to latest prototypes.
Devang, On Wed, 2007-01-24 at 10:28 -0800, Devang Patel wrote: > On Jan 24, 2007, at 4:14 AM, Ramana Radhakrishnan wrote: > > > Hi , > > > > I needed to apply this patch to get the GCC frontend building on an > > FC5 > > x86 box . > > I am curious, what kind of failure are you seeing ? I should have mentioned in the email : Here's my earlier post on this http:/...
2007 Jan 30
3
[LLVMdev] Are these projects still "open"?
Hi, I'm looking to do a semester-long course project involving LLVM. To avoid duplicating efforts, I wanted to know if the following projects (lifted off http://llvm.org/OpenProjects.html) are done with or are currently worked upon. Atleast I couldn't find evidence of these in the 1.9 sources. 1. Implement GVN-PRE, a powerful and simple Partial Redundancy Elimination
2017 Aug 10
2
EOF within quoted string
Hi, Reading http://ssc.wisc.edu/~ahanna/20_newsgroups.csv after downloading it using data <- read.csv("20_newsgroups.csv",header=TRUE) throws this. Warning message: In scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, : EOF within quoted string So, for example, the first line in the file is this. This column contains only such text. Is there a way read it ?
2013 Aug 30
3
Memory usage bar plot
Hi, I haven't tried the code yet. Is there a way to parse this data using R and create bar plots so that each program's 'RAM used' figures are grouped together. So 'uuidd' bars will be together. The data will have about 50 sets. So if there are 100 processes each will have about 50 bars. What is the recommended way to graph these big barplots ? I am looking
2002 Feb 05
3
Doubt in Rsync !!
Sir, How to run the rsync server in the remote machine. I want to mirror the set of directories from one machine to another machine which are in the network. I used the following command : /usr/sbin/rsync -vv --delete --recursive --times --perms --update source directory destinationmachine:destination directory. I got the error: Permission denied. How to tackle this error ? thanks laks
2013 Sep 20
1
Averate memory usage trend
Hi, I would like to understand how to draw a graph to find out the average memory used by a single httpd process given these details collected over a period of several days. I code R but this is about a method to find an average memory utilization. I believe I have enough data. How should I statistically calculate this ? The figures inside braces are the total httpd processes at
2007 Jan 24
0
[LLVMdev] patch - update libiberty/psignal to latest prototypes.
On Jan 24, 2007, at 4:14 AM, Ramana Radhakrishnan wrote: > Hi , > > I needed to apply this patch to get the GCC frontend building on an > FC5 > x86 box . I am curious, what kind of failure are you seeing ? Thanks, - Devang
2007 Jan 30
0
[LLVMdev] Are these projects still "open"?
On Mon, 29 Jan 2007, Prashanth Radhakrishnan wrote: > I'm looking to do a semester-long course project involving LLVM. Great! > To avoid duplicating efforts, I wanted to know if the following projects > (lifted off http://llvm.org/OpenProjects.html) are done with or are > currently worked upon. Atleast I couldn't find ev...
2007 Apr 12
5
[LLVMdev] Naming Suggestion.
On the Warloc - loveloc lines as baldric4 suggested on IRC . Why not OptLOC - Optimize Lines (and Lines) of Code. cheers Ramana Ramana Radhakrishnan <ramana.radhakrishnan at codito.com> Codito Technologies Pvt. Ltd.
2008 Aug 12
1
Re: Memory-hotplug support for x86_64 domUs?
Radhakrishnan, Prashanth wrote: > Hi, > > I wanted to know if the following would work: > - memory-hotplug on x86_64 domUs > - memory-hotplug + ballooning interplay (e.g. > http://lkml.org/lkml/2008/4/3/449), again on x86_64 domUs > > For starts, if I read the Xen linux src (at > http:...
2007 Apr 12
0
[LLVMdev] Compiler name: Nāga
On Apr 12, 2007, at 10:57 AM, Michael McCracken wrote: > Hi, the idea of a dragon theme reminded me of the dragon-like serpents > called "Nāga" from Cambodian mythology, among other places. naga.org already exists, though. We probably want to have the .org available. I like the dragon theme but most of the familiar dragon names are taken. The Hydra of Greek mythology was a
2006 Dec 19
0
[LLVMdev] Books, papers and information
Hi Fredrik, On Tue, 2006-12-19 at 15:13 +0100, Fredrik Svensson wrote: > Hi, > > As Christmas approaches rapidly I would like to get some suggestions for > interesting compiler books, papers and other type of information that one > can read the few slow days over Christmas. > > Any recommendations ? I have the dragon book, but it would be fun to read > something on what
2013 Nov 20
2
Functional Programming patterns
Hi, ' Not specific to 'R'. I search for patterns and found http://patternsinfp.wordpress.com/ which is too heavy for me. There is a 'Pragmatic Programmer' book on such patterns for Scala and Clojure. Is there anything for R ? I wanted to code this. Is there a functional pattern in R for multiple 'if' loops like this ? if(