similar to: Unscribe me please!

Displaying 20 results from an estimated 6000 matches similar to: "Unscribe me please!"

2006 Sep 04
3
Subsetting vectors based on condition
Hello, I have a question regarding subsetting of vectors. Here's an example of what I'm trying to do: vect.1 <- c(76,195, 290, 380) vect.2 <- c(63, 95, 133, 170, 215, 253, 285, 299, 325, 375) I would like to subset vect.2 so that it has the same length as vect.1, and its numbers are the first corresponging higher value compared to vect.1. The output should be: final.output =
2009 Oct 04
1
offlist Re: AW: Urgently needed Exercise solutions related to PracticalData Analysis Using R Statisctial Software
Accepted and forgotten. It just reminds us to check on our prejudices once in a while. Also, I realized that my description was not entirely accurate. You actually had to click the link on the page you posted to get this: http://www.odesk.com/jobs/College-Assistance_~~dd7622f6bdef9177 I am an MSc. computer science student in a foreign university! Need help to solve the exercises in the following
2009 Oct 04
2
Urgently needed Exercise solutions related to Practical Data Analysis Using R Statisctial Software
Hello, Can anybody help me in solving these exercises on regular basis paid or unpaid basis. If he/she want to pay by PayPal then it should be noticed that mention at this email kindly your paypal email account where one can transfer money in all cases. But please respect the deadline in al cases.. *Dealine for this assignment is 07.10.09.* *If it is paid based then kindly let me know a decent
2018 Mar 31
3
Writing tests with Filecheck without emitting output to stdin
That works. Thanks. One more followup question though. Once i run opt on bitcode, there is not useful output/transform on bitcode. this rpt files are extra. I am hoping to do something like this, ; RUN: FileCheck --input-file=a.rpt.gold --check-prefix=CHECK-A < a.rpt ; RUN: FileCheck --input-file=b.rpt.gold --check-prefix=CHECK-B < b.rpt i did not find much examples in tests hence
2017 Oct 03
1
About LLVM Pass dependency
Hi Hongbin I am not quite familiar with AnalysisUsage, let me correct question a bit. I have read Writing Pass <http://llvm.org/docs/WritingAnLLVMPass.html#specifying-interactions-between-passes>, All examples that i see here are based on collecting information .i.e Analysis Passes. I wonder if this applies to Transformation passes also. e.g. void MyInliner::getAnalysisUsage(AnalysisUsage
2018 Mar 31
0
Writing tests with Filecheck without emitting output to stdin
Oops. My bad. I mean to write match-file being my match pattern. and a.rpt being file generated by opt. ;RUN: FileCheck <match-file>a.rpt.gold --input-file=a.rpt. mahesh On Sat, Mar 31, 2018 at 6:57 PM, Mahesh Attarde <coder.mahesh at gmail.com> wrote: > That works. Thanks. > > One more followup question though. > Once i run opt on bitcode, there is not useful
2017 Aug 23
2
Pull data from Tally 9.1 to R studio
Hi all, This is Jagan.i have been provided a task of analyzing sales data of a company in R programming...Just wanted to know,how can I pull Tally 9.1 software data into R programming dataframe. Waiting eagerly for your inputs. With Regards,Jagannathan Krishnan Sent from Yahoo Mail on Android On Tue, Aug 22, 2017 at 10:47 AM, jagan krishnan<jagan.krishnan at yahoo.co.in> wrote: Hi
2017 Aug 24
0
Pull data from Tally 9.1 to R studio
> On Aug 22, 2017, at 11:31 PM, jagan krishnan via R-help <r-help at r-project.org> wrote: > > Hi all, > This is Jagan.i have been provided a task of analyzing sales data of a company in R programming...Just wanted to know,how can I pull Tally 9.1 software data into R programming dataframe. > Waiting eagerly for your inputs. > With Regards,Jagannathan Krishnan > Sent
2007 Jan 11
2
Account is not authorized to log in from this station
Hello All, When I try to connect to the samba installed linux machine from windows I get the message "Account is not authorized to log in from this station". I have made three entries(user name and password) in the smbpasswd file. But if I log in the windows machine using these user names and passwords I get the message "Account is not authorized to log in from this station".
2018 Mar 31
0
Writing tests with Filecheck without emitting output to stdin
Hi Mahesh, On 31 March 2018 at 11:45, Mahesh Attarde via llvm-dev <llvm-dev at lists.llvm.org> wrote: > opt --my-pass <%s | Filecheck %s > > --my-pass generates files a.rpt b.rpt c.rpt . How do i write test without > writing all 3 files to stdin. You can run FileCheck over them on separate RUN lines assuming you know the filename (which I assume you do since you'd be
2017 Aug 24
2
Pull data from Tally 9.1 to R studio
On Thursday, August 24, 2017, 1:50:13 AM EDT, David Winsemius <dwinsemius at comcast.net> wrote: > On Aug 22, 2017, at 11:31 PM, jagan krishnan via R-help <r-help at r-project.org> wrote: > > Hi all, > This is Jagan.i have been provided a task of analyzing sales data of a company in R programming...Just wanted to know,how can I pull Tally 9.1 software data into R
2018 Apr 01
0
Writing tests with Filecheck without emitting output to stdin
See: http://llvm.org/docs/CommandGuide/FileCheck.html It is not required to pipe output to FileCheck; there is the --input-file option, which allows you to run FileCheck on an existing disk file. Something like this: FileCheck %s --input-file a.rpt --check-prefix=A FileCheck %s --input-file b.rpt --check-prefix=B FileCheck %s --input-file c.rpt --check-prefix=C If there are common parts to each
2017 Oct 03
2
About LLVM Pass dependency
Hello I am working on pass which has dependency on multiple passes. Say D1,D2,D3 I used INITIALIZE_PASS_BEGIN INITIALIZE_PASS_DEPENDENCY(D1) INITIALIZE_PASS_DEPENDENCY(D2) INITIALIZE_PASS_DEPENDENCY(D3) INITIALIZE_PASS_END. While running it through opt tool it, I had to specify this D1,D2,D3 pass names to get this pass executed before my pass. Is there way, to let llvm pass manager to know
2018 Apr 23
0
llc tool followed by g++ : Abnormal behavior while compiling assembly to object file
Hi Mahesh, On 23 April 2018 at 10:51, Mahesh Attarde via llvm-dev <llvm-dev at lists.llvm.org> wrote: > movq .str at GOTPCREL(%rip),%rdi > movq .str.1 at GOTPCREL(%rip),%rsi That's quite strange. You wouldn't normally expect to access a constant string via the GOT. It looks like LLVM has decided to put the symbols in an odd section, so it'd be a good idea to make sure
2017 Aug 24
0
Pull data from Tally 9.1 to R studio
IIt might help to read the material at one or both of these links http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example Reproducibility ? Advanced R. | | | | Reproducibility ? Advanced R. | | | On Thursday, August 24, 2017, 6:19:25 AM EDT, John Kane <jrkrideau at yahoo.ca> wrote: On Thursday, August 24, 2017, 1:50:13 AM EDT, David
2018 Mar 31
4
Writing tests with Filecheck without emitting output to stdin
Hello I have pass operating on bitcode file which produces more than one equivalent representation. opt --my-pass <%s | Filecheck %s --my-pass generates files a.rpt b.rpt c.rpt . How do i write test without writing all 3 files to stdin. I have considered CHECK-LABEL for each. it creates bulky checks. Thanks Mahesh -------------- next part -------------- An HTML attachment was
2017 Aug 24
1
Pull data from Tally 9.1 to R studio
Hi, Inline below. > On Aug 24, 2017, at 5:22 AM, John Kane via R-help <r-help at r-project.org> wrote: > > > IIt might help to read the material at one or both of these links http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example > <snip> In this case, had Jagan spent about 30 seconds Googling for the application developer's
2017 Dec 11
2
target porting : objdump is not giving proper registers.
Hi, we have seen proper register numbers when we have generated assembly files through clang but when we generated dump files from object file then we didn't see expected register numbers. Note : all registers are replaced with R0 *Disassembly of section .text:00000000 <main>: 0: 3000ffcc addik r0, r0, -52 4: f8000000 swi r0, r0, 0 8:
2008 Jun 18
0
unscribe
MIME-Version: 1.0 Content-Type: text/plain; charset=euc-kr Content-Transfer-Encoding: quoted-printable Hello,=0A=0AIt doesn't seem to work for me when I was trying to unsubscribe= R-help mailing list (I did not get confirmation email). =0ACould you pleas= e unsubscribe me from the mail list subscription.=0A=0AThanks,=0A=0A=0A=0A = ________________________________________________________
2011 Apr 06
3
BRI Configuration help me
Sir, i am using goautodial server , bri card is showing ok but when i try to call that showing below , This configuration is in doing in dubai , so kindly help me how can connet the call from this , what is my mistake is in this :::chan-dahdi.conf [channels] #include dahdi-channels.conf language=en context=default usecallerid=yes hidecallerid=yes callwaiting=yes usecallingpres=yes