Re: [R] Urgent query

2015-09-04 Thread peter dalgaard
> On 03 Sep 2015, at 19:34 , Bert Gunter wrote: > > You still failed to post to the list! Please learn how to use your > mail client properly and **always** cc the list. > > Anyway, here is an answer (there may be other ways): > >>

Re: [R] Urgent query

2015-09-04 Thread Bert Gunter
Yup. Me too. Much better. -- Bert Bert Gunter "Data is not information. Information is not knowledge. And knowledge is certainly not wisdom." -- Clifford Stoll On Fri, Sep 4, 2015 at 2:57 PM, peter dalgaard wrote: > >> On 03 Sep 2015, at 19:34 , Bert Gunter

Re: [R] Urgent query

2015-09-03 Thread Bert Gunter
1. Always reply to the list, not just to 1 person. 2. I don't do private consulting. 3. Read the posting guide linked below for how to properly post code. Cheers, Bert Bert Gunter "Data is not information. Information is not knowledge. And knowledge is certainly not wisdom." -- Clifford

Re: [R] Urgent query

2015-09-03 Thread Bert Gunter
You still failed to post to the list! Please learn how to use your mail client properly and **always** cc the list. Anyway, here is an answer (there may be other ways): > curve(dweibull(x,shape=0.8,scale=1),mgp=c(2,0.3,0),cex.lab=1.2,xlab="t",ylab="f(t)") >

Re: [R] Urgent query

2015-09-02 Thread David Winsemius
On Sep 2, 2015, at 8:21 AM, Romana Shehla wrote: > Sir/Madam, > > I am a scholar at Aligarh Muslim University and have been > continuously using R language. Recently, I am stuck on labeling axis of the > graphic, I have made. Actually, I want to use mathematical notation > 0

Re: [R] Urgent query

2015-09-02 Thread Bert Gunter
Please show us the code that you used that failed. There are several different graphics systems in R, and the answer depends on which system you use. Cheers, Bert Bert Gunter "Data is not information. Information is not knowledge. And knowledge is certainly not wisdom." -- Clifford Stoll On

[R] Urgent query

2015-09-02 Thread Romana Shehla
Sir/Madam, I am a scholar at Aligarh Muslim University and have been continuously using R language. Recently, I am stuck on labeling axis of the graphic, I have made. Actually, I want to use mathematical notation 0

Re: [R] Urgent query about R!

2011-03-29 Thread Rachel Chu
Thank you everyone for all your help!! I have done and sent my coursework now. Hopefully it is alright! R is an interesting programming language but I am happy to leave it for now ;) Have a wonderful easter break! Best wishes, Rachel 2011/3/23 Jorge Ivan Velez jorgeivanve...@gmail.com Hi

[R] Urgent query about R!

2011-03-22 Thread Rachel Chu
Hi there, I am currently working on a R programming project and got stuck. I am supposed to generate a set of possibilities of 1296 different combinations of 4 numbers, ie. , 1234, 2361, (only contain 1 to 6) in a matrix form here is what I got which has not been working as it keeps coming

Re: [R] Urgent query about R!

2011-03-22 Thread David Winsemius
On Mar 22, 2011, at 6:41 PM, Rachel Chu wrote: Hi there, I am currently working on a R programming project and got stuck. I am supposed to generate a set of possibilities of 1296 different combinations of 4 numbers, ie. , 1234, 2361, (only contain 1 to 6) in a matrix form here is what

Re: [R] Urgent query about R!

2011-03-22 Thread Joshua Wiley
Hi Rachel, First off, getting very stressed when you get stuck is probably not the most helpful approach. Seeking support from someone who knows what to do is an excellent idea, but in the case of classes or homework, it is best to go to your teacher, instructor, or professor. That is what he or

Re: [R] Urgent query about R!

2011-03-22 Thread Jorge Ivan Velez
Hi Rachel, You might also try apply(expand.grid(rep(list(1:6), 4)), 1, paste, collapse = , sep = ) HTH, Jorge * * On Tue, Mar 22, 2011 at 6:41 PM, Rachel Chu wrote: Hi there, I am currently working on a R programming project and got stuck. I am supposed to generate a set of