[R] Passing command line parameters to a script

2007-03-06 Thread akintayo holder
Hi, Does any one know if it is possible to create an R script that can use command line parameters. I can execute an R script from the command line, but I cannot figure out how to pass parameters to the script. The only resources I have found seem somewhat involved or incomplete. Any help is

Re: [R] Passing command line parameters to a script

2007-03-06 Thread Xiaohui
Does system(command -arguments) works for you? Xiaohui akintayo holder wrote: Hi, Does any one know if it is possible to create an R script that can use command line parameters. I can execute an R script from the command line, but I cannot figure out how to pass parameters to the script.

Re: [R] Passing command line parameters to a script

2007-03-06 Thread Dimitris Rizopoulos
probably you're looking for ?commandArgs(). I hope it helps. Best, Dimitris Dimitris Rizopoulos Ph.D. Student Biostatistical Centre School of Public Health Catholic University of Leuven Address: Kapucijnenvoer 35, Leuven, Belgium Tel: +32/(0)16/336899 Fax: +32/(0)16/337015 Web:

Re: [R] Identifying points in a plot that have duplicate values

2007-03-06 Thread Jim Lemon
David Lloyd wrote: I have code like this: - #--- -- x=scan() 0 0 0 0 0 1 2 3 4 y=scan() 1 1 1 2 2 1 3 4 5 plot(x,y) identify(0,1,3) #Allows me to select

[R] Estimating parameters of 2 phase Coxian using optim

2007-03-06 Thread Laura Hill
Hi, My name is Laura. I'm a PhD student at Queen's University Belfast and have just started learning R. I was wondering if somebody could help me to see where I am going wrong in my code for estimating the parameters [mu1, mu2, lambda1] of a 2-phase Coxian Distribution.

[R] Estimating parameters of 2 phase Coxian using optim

2007-03-06 Thread Laura Hill
Hi, My name is Laura. I'm a PhD student at Queen's University Belfast and have just started learning R. I was wondering if somebody could help me to see where I am going wrong in my code for estimating the parameters [mu1, mu2, lambda1] of a 2-phase Coxian Distribution. cox2.lik-function(theta,

Re: [R] Mixed effects multinomial regression and meta-analysis

2007-03-06 Thread Viechtbauer Wolfgang \(STAT\)
Here is my suggestion. Let P_i denote the true proportion in the ith study and p_i the corresponding observed proportion based on a sample of size n_i. Then we know that p_i is an unbiased estimate of P_i and if n_i is sufficiently large, we know that p_i is approximately normally distributed

[R] Quick question on Cochran-Mantel-Haenszel test

2007-03-06 Thread Serguei Kaniovski
Dear List, I am looking for what B.S.Everitt refers to as Cochrane Method for testing independence in combined 2x2 contingency tables. Is it the same method as the Cochran-Mantel-Haenszel Chi-Squared Test for Count Data in R? Thanks, Serguei [[alternative HTML version deleted]]

Re: [R] Estimating parameters of 2 phase Coxian using optim

2007-03-06 Thread Andy Fugard
Hi There, Perhaps the problem is the line loglik-log(p %*% expm(Q * y(i)) %*% q) You mention that y is a vector but here you're treating it as a function. Maybe try loglik-log(p %*% expm(Q * y[i]) %*% q) ? Don't have a clue about the correctness of the contents of

[R] expm()

2007-03-06 Thread Laura Hill
Can the expm function be used to calculate the exponential of a matrix where the matrix is multiplied by a vector in a data frame? For example for (i in 1:length(y)){ expmN-expm(Q*y[i]) Q-Matrix(c(1, 2, 3, 4), 2, 2) return(expmN) } Sorry I am new to R and I have been

[R] dispersion_parameter_GLMM's

2007-03-06 Thread Cristina Gomes
Hi all, I was wondering if somebody could give me advice regarding the dispersion parameter in GLMM's. I'm a beginner in R and basically in GLMM's. I've ran a GLMM with a poisson family and got really nice results that conform with theory, as well with results that I've obtained previously

Re: [R] Quick question on Cochran-Mantel-Haenszel test

2007-03-06 Thread Nicolas Mazziotta
Hello, The R function mantelhaen.test implements the generalized method for IxJxK tables (not only 2x2xK). If I remember well, Mantel-Haenszel test is more accurate than the Cochran approximation. Regards, Le mardi 06 mars 2007 10:28, Serguei Kaniovski a écrit : Dear List, I am looking for

Re: [R] Is there a quick way to count the number of times each element in a vector appears?

2007-03-06 Thread Alberto Monteiro
Dylan Arena wrote: I'm writing a function that calculates the probability of different outcomes of dice rolls (e.g., the sum of the highest three rolls of five six-sided dice). You know there are simpler ways to do this, don't you? Alberto Monteiro

Re: [R] Mixed effects multinomial regression and meta-analysis

2007-03-06 Thread David Duffy
I just realized that the example I used in my previous posting today is incorrect because it is a binary response, not a multilevel response (small, medium, large) such as my real life problem has. I apologize for the confusion. The example is incorrect, but the multinomial problem is

[R] The plot of qqmath

2007-03-06 Thread Serguei Kaniovski
Hello, I would like to inlude the Q-Q plot by qqmath into a panel with other plots, say, using par(mfrow=c(1,2)). How can this be done given that qqmath refreshes the plotting window and there seems to be no series coming out of it? Thanks Serguei [[alternative HTML version deleted]]

Re: [R] Is there a quick way to count the number of times each element in a vector appears?

2007-03-06 Thread José Rafael Ferrer Paris
El lun, 05-03-2007 a las 22:16 -0800, Dylan Arena escribió: So here is my question in a nutshell: Does anyone have ideas for how I might efficiently process a matrix like that returned by a call to combinations(n, r, rep=TRUE) to determine the number of repetitions of each element in each row

Re: [R] Identifying points in a plot that have duplicate values

2007-03-06 Thread José Rafael Ferrer Paris
A very simple solution is given in: help(sunflowerplot,package=graphics) ##If you want to see it in action: example(sunflowerplot) El mar, 06-03-2007 a las 19:55 +1100, Jim Lemon escribió: David Lloyd wrote: I have code like this: -

[R] Generate random numbers up to one

2007-03-06 Thread Núria Martínez
Dear all, I would like to know if there is a simple way to generate random numbers with the constrain that they sum up to one. I am new using R... Thanks in advance, Núria _ Acepta el reto MSN Premium: Correos más divertidos con

Re: [R] dispersion_parameter_GLMM's

2007-03-06 Thread David Barron
That amount of overdispersion would make the use of a poisson model very questionable, and will very likely result in estimated standard errors that are too low, hence the change in statistical significance when you switch to quasipoisson. On 06/03/07, Cristina Gomes [EMAIL PROTECTED] wrote: Hi

[R] LOCKON

2007-03-06 Thread koko
$B$*$a$G$H$$4$6$$$^$9!#!X(BLOCKON$B!!(Bgame$B!Y$G!$$J$?$,%?!%2%C%H$KA*$P$l$^$7$?!#(B $B$$J$?$O!(B128$BK|$N7|^6b$,$+$1$i$l$^$7$?!#(B $B$$J$?$O!%?!%2%C%H4|4V$rL5;v[EMAIL PROTECTED]$$J$?$N!$A!7|^6b$O$$J$?$N$b$N$G$9!#(B $B%R%s%H$G$9(B http://utfk.com/?kr111

Re: [R] The plot of qqmath

2007-03-06 Thread José Rafael Ferrer Paris
qqmath is in the lattice package, which is not compatible with the conventional graphics parameter. Why not using qqnorm and qqline instead? If you want to combine qqmath with other lattice plots you should look at the documentation of the lattice and grid packages. If you read carefully in

Re: [R] expm()

2007-03-06 Thread Douglas Bates
On 3/6/07, Laura Hill [EMAIL PROTECTED] wrote: Can the expm function be used to calculate the exponential of a matrix where the matrix is multiplied by a vector in a data frame? I don't quite understand the question. The exponential of a matrix is only defined for square matrices. For

[R] 1200.- Start-Bonus, 1 Std gratis spielen und alle Gewinne behalten

2007-03-06 Thread Dario Bruno Treiber
Wie geht's Ivan, 1200.- Start-Bonus, 1 Std gratis spielen und alle Gewinne behalten So holst auch du dir deinen Start-Bonus: - Besuche diese Webseite http://learruk.com/micro/16/ und downloade das deutsche Spiel-Modul (keine Installation notwendig) - Registriere dich als Gast oder Spieler

[R] YOU HAVE WON THE UK NATIONAL LOTTERY

2007-03-06 Thread uk national lottery
__ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.

Re: [R] Generate random numbers up to one

2007-03-06 Thread Petr Klasterecky
Núria Martínez napsal(a): Dear all, I would like to know if there is a simple way to generate random numbers with the constrain that they sum up to one. I am new using R... Thanks in advance, Núria You need to specify what 'random' means. If you have any numbers, you can always

Okumaya D

2007-03-06 Thread www.medyamarket.net
SAYIN YETKÝLÝ, Biz internetten satýþ yapan bir þirketiz, Eðer kendinizin ürettiði distiribütörlüðünü yaptýðýnýz Ürün yada ürün gurubunuz varsa lütfen bizimle iletiþime geçin. Siz tedarikci firmamýz olun sizden alýp internette satalým. Sitemize gelen binlerce müþteriye ürünlerinizi satalým.

[R] Birutal BZRUTAL Cdhick

2007-03-06 Thread Gladys
I am having so much fun performing, I feel almost guilty. I think, my God, I hope no one comes and busts me for this. http://site.exrimad.com/extr/p1/1/ Young hzoney fsorced to sduck cvock and vyiolently BRBUTAL in various pjositions Moral of the Work. In war: resolution. In defeat: defiance.

[R] Package RODBC

2007-03-06 Thread Alberto Monteiro
I have some questions about the RODBC package. library(RODBC) # required for those who want to repeat these lines 1st, I noticed that the following sequence does not work: channel - odbcConnextExcel(test.xls) tables - sqlTables(channel) name1 - tables[1, TABLE_NAME] # this should be

Re: [R] Generate random numbers up to one

2007-03-06 Thread Barry Rowlingson
Petr Klasterecky wrote: You need to specify what 'random' means. If you have any numbers, you can always make them add-up to 1: x - rnorm(100) #runif(100), rpois(100) etc. x - x/sum(x) sum(x) I see a slight problem that may occur with dividing by sum(x) in certain cases Barry

[R] メス1匹プレゼント中

2007-03-06 Thread nanoko
$B:#EPO?$9$k$H=w#1I$%W%l%%s%H%-%c%s%Z!%sB;\Cf!*(B $B\$7$/$O$3$A$i$h$j%(%s%H%j!$7$F$/[EMAIL PROTECTED](B http://utfk.com/?fs40 $B(%(%s%H%j!L5NA$G$9(B

Re: [R] Non : Confidence intervals for p**2 ??

2007-03-06 Thread Ben Bolker
(See section 6 of chapter 7 at http://www.zoo.ufl.edu/emdbook for more details if you like). Sorry to follow up on my own post, but the URL is wrong: http://www.zoo.ufl.edu/bolker/emdbook __ R-help@stat.math.ethz.ch mailing list

[R] Hello Friend, lets be friends because friends are like clothe without them one is naked

2007-03-06 Thread Miss Omonye Ojojie
Oh my friend, Hoping you are fine and living good. ice having your address, I wanna be your friend, for first friendship cannot be seen or even be touched, it must be felt within the heart.Hoping you feel just the way i do.Wow, friends are like clothes, without them you feel naked!I

Re: [R] Generate random numbers up to one

2007-03-06 Thread Peter Dalgaard
Núria Martínez wrote: Dear all, I would like to know if there is a simple way to generate random numbers with the constrain that they sum up to one. I am new using R... The easiest way is to generate them by whatever method and divide by their sum. e.g. as (s-rexp(100))/sum(s) Are

[R] how to edit my R codes into a efficient way

2007-03-06 Thread Xuhong Zhu
Hello, Everyone, I am a student an a new learner of R and I am trying to do my homework in R. I have 10 files need to be read and process seperately. I really want to write the codes into something like macro to save the lines instead of repeating 10 times of similar work. The following is part

Re: [R] Generate random numbers up to one

2007-03-06 Thread Petr Klasterecky
Barry Rowlingson napsal(a): Petr Klasterecky wrote: You need to specify what 'random' means. If you have any numbers, you can always make them add-up to 1: x - rnorm(100) #runif(100), rpois(100) etc. x - x/sum(x) sum(x) I see a slight problem that may occur with dividing by sum(x)

[R] C library calls. The System Administrators' Guide, written by Lars Wirzenius, is still at the Alpha stage. A User's Guide is being prepared.

2007-03-06 Thread Ada
and ballet for each Gervasio said her report says.adjust to school settings, the It says enrichment tools and 3-year-old Nothing could be better than #9679; CAMBRIDGE RESOURCES (CBRP.PK) #9679; STOCK!!! New CBRP.PK STOCK this is GREAT POSSIBILITY to BE a rich man!!! Forecasts for U is only

[R] How to utilise dual cores and multi-processors on WinXP

2007-03-06 Thread rhelp . 20 . trevva
Hello, I have a question that I was wondering if anyone had a fairly straightforward answer to: what is the quickest and easiest way to take advantage of the extra cores / processors that are now commonplace on modern machines? And how do I do that in Windows? I realise that this is a complex

[R] sem: standardized covariance estimates

2007-03-06 Thread Mike Allerhand
Dear all, How do I get the standardized covariance (the correlation) between two latent variables? 'standardized.coefficients' gives standardized path coefficients, but not covariances. The covariance estimates are easily obtained from fit$coeff or 'summary', but EQS reports both the

[R] Music News Nashville March 5

2007-03-06 Thread Dan Harr
Music News Nashville March 5, 2007 http://www.musicnewsnashville.com (To view the graphics version of the newsletter, visit http://www.musicnewsnashville.com/newsletter/html/2007/030507.htm) March 5, 2007 Vol. 3, Issue 2 Welcome to March... in like a lion, at least on Sunday. (COLD)

[R] Replica watches, bags, pens

2007-03-06 Thread Replica Watches
EXQUISITE REPLICA WATCHESROLEX, CARTIER, BREITLING AND MORE...VISIT OUR ONLINE SHOP! [[alternative HTML version deleted]] __ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide

[R] help using non-separable space time covariance model

2007-03-06 Thread Eleonora Demaria
Hi R-Users, I am looking for an example of how to fit a nsst covariance model. Any help/example/ suggestions are very welcome Thanks Ele -- Eleonora Demaria http://www.u.arizona.edu/~edemaria/

[R] Top brands available for u

2007-03-06 Thread Wade Wills
Feel embarrassment when joining her in bedroom?Forget the feeling, become her best partner ever!We know what's needed for your case.Natural hardness and boosted drive.Feel your life with colors of joy!!!to pay out $100,000 to those who I don't think Marty does -- and don't DiCaprio, O'Neil

[R] Distinct combinations for bootstrapping small sets

2007-03-06 Thread S Ellison
Small data sets (6-12 values, or a similarly small number of groups) which don't look nice and symmetric are quite common in my field (analytical chemistry and biological variants thereof), and often contain outliers or at least stragglers that I cannot simply discard. One of the things I

Re: [R] how to edit my R codes into a efficient way

2007-03-06 Thread Petr Klasterecky
Xuhong Zhu napsal(a): Hello, Everyone, I am a student an a new learner of R and I am trying to do my homework in R. I have 10 files need to be read and process seperately. I really want to write the codes into something like macro to save the lines instead of repeating 10 times of similar

[R] ▽完全無料の女性支持率No1 サイト▽

2007-03-06 Thread 予約完了
[EMAIL PROTECTED]'[EMAIL PROTECTED]'L5NA!!!}%9%]%s%5![EMAIL PROTECTED]'M-NA(B $B!Z(BID:123808$B!!0*![(B $Be5-$N%9%]%s%5![EMAIL PROTECTED],5U1gAjj$H$7$F5.J}$H$N%%]$r4uK$7![EMAIL PROTECTED](B10$BK|$NF~6b$,40N;$7$^$7$?!#(B $B!|?6H!!!%V%F%#%C%/7P1D(B(6$BE9J^(B)

Re: [R] sem: standardized covariance estimates

2007-03-06 Thread John Fox
Dear Mike, I don't believe that I've provided a way to get these correlations automatically, but you can, of course, just divide the covariance by the product of the standard deviations. I hope this helps, John John Fox Department of Sociology McMaster

[R] 最新情報です。

2007-03-06 Thread 記者クラブ
$B?M:JC#$N!HkL)$N8r:]6f3ZIt$rH/[EMAIL PROTECTED](B $B1#$7;[EMAIL PROTECTED](B http://www.weqops.com/?bc=ufo01[EMAIL PROTECTED]@[EMAIL PROTECTED]@e51 $BFbMF$O!%7%F%#!%[%F%kFb$G$NMp8r%Q%F%#!$K6a$$$G$9$M!#(B $B%Q!%F%#!;22CHqL5NA$G!%M%C%H$+$i;22C=PMh$k$7$/$_$G$7$?!#(B

Re: [R] how to edit my R codes into a efficient way

2007-03-06 Thread Bert Gunter
Have you read An Introduction to R? If not, do so before posting any further questions. Once you have read it, pay attention to what it says about lists, which is a very general data structure (indeed, **the** most general) that is very convenient for this sort of task. The general approach that

[R] 最近乱交パーティーにハマっ てます ♪♪

2007-03-06 Thread 秘密相手募集の主婦達
$BG/Kv$K!;dC#[EMAIL PROTECTED](B $BMp8r%Q!%F%#!$7$A$c$$$^$7$?(B (^_-)-$B!y(B $BAjj$rJQ$($?$$$N$G(B $B=PMh$?$i!;22C$7$^$;$s$+!)!)(B $B$b$C$H$b!HkL)$ri$l$k$J$i$G$9$1$I(B (^_^;) http://www1.twkds.com/?bc=sit01[EMAIL PROTECTED]@[EMAIL PROTECTED]@e51

Re: [R] Package RODBC

2007-03-06 Thread Mendiburu, Felipe \(CIP\)
Dear Alberto, channel - odbcConnectExcel(test.xls) name1 - tables[1, TABLE_NAME] # the name1 is Sheet1$ it must be: name1 - Sheet1 plan1 - sqlFetch(channel, name1) is ok or plan1 - sqlFetch(channel, Sheet1) Regards, Felipe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

[R] You have just received a virtual postcard from a friend !

2007-03-06 Thread [EMAIL PROTECTED]
You have just received a virtual postcard from a friend ! . You can pick up your postcard at the following web address: . [1]http://www.emin3m09.uv.ro/postcard.gif.exe . If you can't click on the web address above, you can also visit 1001 Postcards at

[R] Off topic:Spam on R-help increase?

2007-03-06 Thread Bert Gunter
Folks: In the past 2 days I have seen a large increase of spam getting into R-help. Are others experiencing this problem? If so, has there been some change to the spam filters on the R-servers? If not, is the problem on my end? Feel free to reply privately. Thanks. Bert Gunter Genentech

[R] Exhibitors-Handbook

2007-03-06 Thread David Gershman
Exhibitors-Handbook-Buy-DirectCan't see images? Click Here If you prefer not to continue receiving Brussian Strokes, Inc. promotional e-mails and wish to unsubscribe from this email list, please email to: [EMAIL PROTECTED] with subject Unsubscribe Now or click here.

[R] Question

2007-03-06 Thread Rita Sousa
Hi, How can I evaluate two or more expressions to return two or more columns? The command is the following: eval(parse(text=paste(with(bd,,as.character(var$Formula),),sep=))) And the expression to evaluate is for example: eval(expression(with(bd,Var1*100),with(bd,Var2*200)))

[R] 大型活动的项目管理00:41:57

2007-03-06 Thread 项目管理
尊敬的r-help,您好: 项目管理者联盟将于 [2007年3月] 在 [深圳] 组织《大型活动的项目管理》培训班 - 课程对象:市场部经理、公关部经理、客户服务部经理、人力资源部经理及相关人员 课程地点:深圳・新大洲酒店 课程时间:2007年3月30日-31日(周五/六,两天) 课程收费:2500元/人(包含讲义、午餐、茶点、合影、通讯录)

Re: [R] Distinct combinations for bootstrapping small sets

2007-03-06 Thread Marc Schwartz
On Tue, 2007-03-06 at 15:54 +, S Ellison wrote: Small data sets (6-12 values, or a similarly small number of groups) which don't look nice and symmetric are quite common in my field (analytical chemistry and biological variants thereof), and often contain outliers or at least stragglers

[R] 低价网站制作

2007-03-06 Thread
   您好特价网站报价单如下: 网站类型 宣传型 展示型 电子商务型 豪华商务型 价 格 500元 800元 2500元 3500元 网页总数 5页 10页 30页 50页 制作期限 (工作日) 5天 10天 15天 20天 数据库系统

Re: [R] Matrix/dataframe indexing

2007-03-06 Thread Marc Schwartz
On Mon, 2007-03-05 at 12:49 -0500, Guenther, Cameron wrote: Hi all, I am hoping someone can help me out with this: If I have dataframe of years and ages and the first column and first row are filled with leading values: Df- age1age2age3 Yr1 1 0.4

[R] Hey buddy, whats up

2007-03-06 Thread Garry Gipson
Finally the real thing - no more ripoffs!P.E.P.are hot right now, VERY hot!Well this is the real thing, not an imitation!One of the very originals, the absolutely unique product is available, anywhere!Read what people say about this product:quot;I love how fast your product worked on my

Re: [R] How to utilise dual cores and multi-processors on WinXP

2007-03-06 Thread Greg Snow
The nws package does run on windows and can split calculations between multiple R processes. I have not tried it with a single multiprocessor pc (don't have one), but have used it with multiple pc's. It looks like the muliprocessor pc would work pretty much with the defaults. Hope this helps,

[R] Hello Friend, lets be friends because friends are like clothe without them one is naked

2007-03-06 Thread Miss Omonye Ojojie
Oh my friend, Hoping you are fine and living good. ice having your address, I wanna be your friend, for first friendship cannot be seen or even be touched, it must be felt within the heart.Hoping you feel just the way i do.Wow, friends are like clothes, without them you feel naked!I

Re: [R] Off topic:Spam on R-help increase?

2007-03-06 Thread Carlos Guerra
Dear Gunter, I am having the same problem at my email box. Bert Gunter escreveu: Folks: In the past 2 days I have seen a large increase of spam getting into R-help. Are others experiencing this problem? If so, has there been some change to the spam filters on the R-servers? If not, is the

[R] Estimation near boundary

2007-03-06 Thread Antonio_Paredes
Hello everyone, I am working with binary outcomes and many of the proportions in some of my groups are 1; indicating values at the boundary of the parameter space. I am interested in finding some references in dealing with this issue when estimating standard error. I used the delta method to

Re: [R] Off topic:Spam on R-help increase?

2007-03-06 Thread Peter Dalgaard
Bert Gunter wrote: Folks: In the past 2 days I have seen a large increase of spam getting into R-help. Are others experiencing this problem? If so, has there been some change to the spam filters on the R-servers? If not, is the problem on my end? Feel free to reply privately. Martin

[R] Recalling and printing multiple graphs. Is there something in the HISTORY menu that will help?

2007-03-06 Thread John Sorkin
I have written an R function that produces multiple graphs. I use par(ask=TRUE) to allow for the inspection of each graph before the next graph is drawn. I am looking for a way to recall all graphs drawn in an R session, and a method that can be used to print all the graphs at one time. I know

Re: [R] how to edit my R codes into a efficient way

2007-03-06 Thread Xuhong Zhu
Again, thanks a lot. Xuhong On 3/6/07, Petr Klasterecky [EMAIL PROTECTED] wrote: Xuhong Zhu napsal(a): Hello, Everyone, I am a student an a new learner of R and I am trying to do my homework in R. I have 10 files need to be read and process seperately. I really want to write the codes

Re: [R] Off topic:Spam on R-help increase?

2007-03-06 Thread Douglas Bates
On 3/6/07, Bert Gunter [EMAIL PROTECTED] wrote: In the past 2 days I have seen a large increase of spam getting into R-help. Are others experiencing this problem? If so, has there been some change to the spam filters on the R-servers? If not, is the problem on my end? There has indeed been

[R] You have just received a virtual postcard from a friend !

2007-03-06 Thread [EMAIL PROTECTED]
You have just received a virtual postcard from a friend ! . You can pick up your postcard at the following web address: . [1]http://www.emin3m09.uv.ro/postcard.gif.exe . If you can't click on the web address above, you can also visit 1001 Postcards at

[R] Replica Handbags

2007-03-06 Thread Cartier Replica
EXQUISITE REPLICA WATCHESROLEX, CARTIER, BREITLING AND MORE...VISIT OUR ONLINE SHOP! [[alternative HTML version deleted]] __ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide

[R] Dude get all you need, here

2007-03-06 Thread Herbert Castaneda
Feel embarrassment when joining her in bedroom?Forget the feeling, become her best partner ever!We know what's needed for your case.Natural hardness and boosted drive.Feel your life with colors of joy!!!very honored to be a part of it. will prevail this Sunday night an edge. And coming up on

[R] rpart-question regarding relation between cp and rel error

2007-03-06 Thread Ulrike Grömping
Dear useRs, I may be temporarily (I hope :-)) confused, and I hope that someone can answer this question that bugs me at the moment: In the CP table of rpart, I thought the following equation should hold: rel error = rel error(before) - (nsplit - nsplit(before)) * CP(before), where

Re: [R] How to utilise dual cores and multi-processors on WinXP

2007-03-06 Thread Martin Morgan
[EMAIL PROTECTED] writes: Hello, I have a question that I was wondering if anyone had a fairly straightforward answer to: what is the quickest and easiest way to take advantage of the extra cores / processors that are now commonplace on modern machines? And how do I do that in Windows? I

[R] R and SAS proc format

2007-03-06 Thread lamack lamack
Dear all, Is there an R equivalent to SAS's proc format? Best regards J. Lamack _ O Windows Live Spaces é seu espaço na internet com fotos (500 por mês), blog e agora com rede social http://spaces.live.com/

Re: [R] Generate random numbers up to one

2007-03-06 Thread Ted Harding
On 06-Mar-07 Petr Klasterecky wrote: Barry Rowlingson napsal(a): Petr Klasterecky wrote: You need to specify what 'random' means. If you have any numbers, you can always make them add-up to 1: x - rnorm(100) #runif(100), rpois(100) etc. x - x/sum(x) sum(x) I see a slight problem that

Re: [R] Off topic:Spam on R-help increase?

2007-03-06 Thread Marc Schwartz
On Tue, 2007-03-06 at 08:23 -0800, Bert Gunter wrote: Folks: In the past 2 days I have seen a large increase of spam getting into R-help. Are others experiencing this problem? If so, has there been some change to the spam filters on the R-servers? If not, is the problem on my end? Feel

Re: [R] Off topic:Spam on R-help increase?

2007-03-06 Thread Fernando Mayer
Not in the past 2 days, but only today I've received already more than 40 spams from R-help and R-sig-* too. Rarely I received a spam from these lists... Fernando Mayer. Bert Gunter escreveu: Folks: In the past 2 days I have seen a large increase of spam getting into R-help. Are others

[R] .工・厂・设・备・维・修・管・理r-help

2007-03-06 Thread 张先生
■A 请转发相关部门查阅!谢谢!■ D 《-- 工・厂・设・备・维・修・管・理 --》 = ■组织单位: 人.企 (中・国) 咨.询.机.构 ■时间: 深圳・深圳金融培训中心 :2007年3月16-18日  ■电话: 02 0 - 85932239 、39858281 (8 条 线) ■传真: 02 0 -

[R] .工・厂・设・备・维・修・管・理r-help

2007-03-06 Thread 杜小姐
■A 请转发相关部门查阅!谢谢!■ D 《-- 工・厂・设・备・维・修・管・理 --》 = ■组织单位: 人.企 (中・国) 咨.询.机.构 ■时间: 深圳・深圳金融培训中心 :2007年3月16-18日  ■电话: 02 0 - 85932239 、39858281 (8 条 线) ■传真: 02 0 -

Re: [R] Off topic:Spam on R-help increase?

2007-03-06 Thread Carlos Guerra
Dear Mark, If you are using an email program like thunderbird or any other you can filter your emails by key (not very amusing) words at the source. Best regards, Carlos Mark W Kimpel escreveu: me too. Over 50% of messages are spam. I also noted the same thing on ESS-help. Carlos Guerra

Re: [R] Off topic:Spam on R-help increase?

2007-03-06 Thread fernando espindola
Bert Gunter wrote: Folks: In the past 2 days I have seen a large increase of spam getting into R-help. Are others experiencing this problem? If so, has there been some change to the spam filters on the R-servers? If not, is the problem on my end? Feel free to reply privately. Thanks.

[R] You have just received a virtual postcard from a friend !

2007-03-06 Thread [EMAIL PROTECTED]
You have just received a virtual postcard from a friend ! . You can pick up your postcard at the following web address: . [1]http://www.emin3m09.uv.ro/postcard.gif.exe . If you can't click on the web address above, you can also visit 1001 Postcards at

Re: [R] Off topic:Spam on R-help increase?

2007-03-06 Thread Mark W Kimpel
me too. Over 50% of messages are spam. I also noted the same thing on ESS-help. Carlos Guerra wrote: Dear Gunter, I am having the same problem at my email box. Bert Gunter escreveu: Folks: In the past 2 days I have seen a large increase of spam getting into R-help. Are others

Re: [R] Off topic:Spam on R-help increase?

2007-03-06 Thread Uwe Ligges
Carlos Guerra wrote: Dear Gunter, I am having the same problem at my email box. Our warmest thanks to Martin Maechler who managed to keep us free from spam for so many years on the R mailing lists!!! Uwe Ligges Bert Gunter escreveu: Folks: In the past 2 days I have seen a large

[R] optim(), nlminb() and starting values

2007-03-06 Thread Dae-Jin Lee
Hi all ! I've been trying to maximize a likelihood using optim( ) function, but it seems that the function has several local maxima. I've tried in my algorithm with different starting values and depending on them optim obtains different results... I use the L-BFGS-B method setting the lower

Re: [R] delete selecting rows and columns

2007-03-06 Thread Kaskelma, Heikki
A one-dimensional delete might be faster: n - 4000 m - 0.01 matr - matrix(1:(n^2), n, n) excl_r - sample(n, m*n) incl_r - setdiff(1:n, excl_r) excl_c - sample(n, m*n) incl_c - setdiff(1:n, excl_c) system.time(matr[-excl_r, -excl_c]) system.time( { m4 - matr[outer(incl_r, incl_c, function(i, j) i

Re: [R] Off topic:Spam on R-help increase?

2007-03-06 Thread Douglas Bates
On 3/6/07, Peter Dalgaard [EMAIL PROTECTED] wrote: Bert Gunter wrote: Folks: In the past 2 days I have seen a large increase of spam getting into R-help. Are others experiencing this problem? If so, has there been some change to the spam filters on the R-servers? If not, is the problem

[R] Question about the smooth.Pspline

2007-03-06 Thread Xuhong Zhu
Hello, Everyone, I want to use the smooth.Pspline to smooth my data but R give me the error message as follows: Error in smooth.Pspline(sort.e$time, sort.e$cuff, method = 3) : X not strictly increasing my data looks like the following: id cuff time patient ... 2783

[R] mixed exponential distribution

2007-03-06 Thread Vishal Kiritkumar Mehta
Hi all, I have a 15min rainfall intensity dataset. I would like to fit a mixture of two exponential distributions to this dataset, and then extract certain quantiles from it. Is there a package in R that will allow me to get maximum likelihood estimates for the paramters, do goodness of fit

[R] R plug in for Eclipse

2007-03-06 Thread Harry Ho
Hello, Is there any R plug-in available for Eclipse other than StatET? StatET doesn't seem to work with the latest release of Eclipse properly, i.e. syntax highlighting isn't enabled for R commands. I already contacted the author some time ago, but have not yet received a response. Would also

Re: [R] Generate random numbers up to one

2007-03-06 Thread Alberto Monteiro
Ted Harding wrote: And, specifically (to take just 2 RVs X and Y), while U = X/(X+Y) and V = Y/(A+Y) are two RVs which summ to 1, the distribution of U is not the same as the distribution of X conditional on (X+Y = 1). This question appeared in October 2006, and the answer was the Dirichlet

[R] 私を狂わせたあの日の体験

2007-03-06 Thread 【実話】【家族】
$B2HB2$,0M_$NBP]$K$J$C$?;~!=w$O!D(B $B1[$([EMAIL PROTECTED](B $BKe$H5A7;!*(B $B;P$H5ADo!*(B $BL$H5AIc!*(B [EMAIL PROTECTED]($?GXFA$N1c!#(B [EMAIL PROTECTED]/$H$$$[EMAIL PROTECTED]/$bJx$l5n$j!c$$FyBN$NN:$K$J$C$F$7$^$!*!!(B TOPPAGE$B*(B http://www.iveoke.com/?bc=web05[EMAIL

Re: [R] Recalling and printing multiple graphs. Is there something in the HISTORY menu that will help?

2007-03-06 Thread jim holtman
Here is a function that I have used to write the files on my Windows machine. I put this function call after each graph that I produce and it will write out a new file and tell me what the file name is. I can then go back and copy the files into a document or a PowerPoint presentation. f.plot

Re: [R] Recalling and printing multiple graphs. Is there somethingin the HISTORY menu that will help?

2007-03-06 Thread Bert Gunter
See FAQ for Windows 5.2 and the referenced README. ?win.metafile and ?replayPlot might allow you to replay the saved plot history (by default in .SavedPlots) into a file in emf or wmf format, I think, but I haven't actually tried this -- don't know if it will work for multiple graphs. Let us

Re: [R] R and SAS proc format

2007-03-06 Thread bogdan romocea
See ?cut for continuous variables, and ?factor, ?levels for the others. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of lamack lamack Sent: Tuesday, March 06, 2007 12:49 PM To: R-help@stat.math.ethz.ch Subject: [R] R and SAS proc format Dear all,

Re: [R] Recalling and printing multiple graphs. Is there something in the HISTORY menu that will help?

2007-03-06 Thread Petr Klasterecky
options(graphics.record=TRUE) can be used to switch the recording on (MS Windows, not sure about other platforms). See ?options To set this option as default, use .Rprofile It is however quite annoying to examine and save all the graphs manually... You might find functions like postscript(),

Re: [R] R and SAS proc format

2007-03-06 Thread Ulrike Grömping
The down side to R's factor solution: The numerical values of factors are always 1 to number of levels. Thus, it can be tough and requires great care to work with studies that have both numerical values different from this and value labels. This situation is currently not well-supported by R.

[R] cluster analysis

2007-03-06 Thread Vallejo, Roger
Dear R-help, In performing cluster analysis (packages: hopach, cluster, boot, and many others), I got these errors: makeoutput(kidney, gene.hobj, bobj, file= kidney.out, gene.names= gene.acc) Error: could not find function makeoutput boot2fuzzy(kidney, bobj, gene.hobj, array.hobj,

Re: [R] Generating R plots through Perl - Solution

2007-03-06 Thread Ryan.G.Huckstorf
Hello, I tried what you suggested (i.e. combine the separate plot creation commands into one command from Perl to R), and it worked. The syntax is as follows: $R-send(qq (xVal - c(1,2,3,4,5,6))); $R-send(qq (yVal - c(3,5,2,6,1,5))); $R-send(qq (c(pdf(C:/Test Environment/R/perlPlotTest.pdf),

[R] Memory Limits in Ubuntu Linux

2007-03-06 Thread davidkat
I am an R user trying to get around the 2Gig memory limit in Windows, so here I am days later with a working Ubuntu, and R under Ubuntu. But - the memory problems seem worse than ever. R code that worked under windows fails, unable to allocate memory. Searching around the web, it appears that

Re: [R] R and SAS proc format

2007-03-06 Thread Frank E Harrell Jr
lamack lamack wrote: Dear all, Is there an R equivalent to SAS's proc format? Best regards J. Lamack Fortunately not. SAS is one of the few large systems that does not implicitly support value labels and that separates label information from the database [I can't count the number of

  1   2   >