Re: [R] the making of _R_ eBooks

2015-03-23 Thread John McKown
On Mon, Mar 23, 2015 at 3:50 AM, Dr. Wolfgang Lindner lindn...@t-online.de wrote: Dear list members, I like the look and feel of the eBook versions of the R manuals very much. So I would like to generate eBooks (teaching material etc) in that look. I am not an expert. But I have looked at the

[R] Replace a column value on condition

2015-03-23 Thread Kuma Raj
I want to replace column c3 with values from column c2 whenever values of column Id are 2. In stata I could use replace c3 = c2 if id ==2. How could I do that in R? Thanks Sample data found below: dput(df4) structure(list(c2 = c(42L, 42L, 47L, 47L, 55L, 55L, 36L, 36L, 61L, 61L), c3 = c(68L,

[R] Rate limiting question on SO

2015-03-23 Thread Aron Lindberg
Hi All, I have been trying to write a “manual” API rate limiting function for the rgithub package, but I’m not quite sure if I have succeeded or not. I need to figure out a) how can I find out if my function actually does rate-limiting, and b) if not, how can I rewrite it so that it actually

Re: [R] the making of _R_ eBooks

2015-03-23 Thread Prof Brian Ripley
On 23/03/2015 08:50, Dr. Wolfgang Lindner wrote: Dear list members, I like the look and feel of the eBook versions of the R manuals very much. So I would like to generate eBooks (teaching material etc) in that look. Q1: is there a description how the _R_ ebooks have been produced? Q2: which

[R-es] Fwd: [SeR] Información próxima reunión Sevilla-R

2015-03-23 Thread Francisco Rodriguez Sanchez
Buenos días, Envío información sobre próxima reunión del grupo local R-Sevilla, y un 'concurso' de predicción/visualización de resultados electorales. El concurso está abierto a todo el mundo. Si alguien quiere participar pero no puede venir a presentar sus resultados en directo puede escribir

[R] Conversion of Matlab code to an R code

2015-03-23 Thread Abhinaba Roy
Hi, Can a Matlab code be converted to R code? I am finding it difficult to do so. Could you please help me out with it. Your help will be highly appreciated. Here comes the Matlab code ## if ~isvector(ecg) error('ecg must be a row or column vector'); end if nargin 3 gr =

Re: [R] Conversion of Matlab code to an R code

2015-03-23 Thread Bert Gunter
1. Yes. Both are Turing complete . 2. Someone here may be willing to help you if you're lucky, but the standard recommendation is: Do your homework and learn R! (There are many good tutorials and resources available). 3. In future, post in plain text, not HTML, as the posting guide asks.

[R] Date as numeric

2015-03-23 Thread Eduardo M. A. M.Mendes
Hello I wonder what the formula behind as.numeric(2012-11-11 19:05:00 UTC”) is. Many thanks Ed __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide

Re: [R] Date as numeric

2015-03-23 Thread MacQueen, Don
No formula behind that: as.numeric(2012-11-11 19:05:00 UTC) [1] NA Warning message: NAs introduced by coercion If a character string is recognizable as a number, you get that number. For example: as.numeric('3') [1] 3 But your character string isn't recognizable as a number, so you get NA,

Re: [R] Replace a column value on condition

2015-03-23 Thread Berend Hasselman
On 23-03-2015, at 13:58, Kuma Raj pollar...@gmail.com wrote: I want to replace column c3 with values from column c2 whenever values of column Id are 2. In stata I could use replace c3 = c2 if id ==2. How could I do that in R? k - which(df4$id==2) df4[k,c3] - df4[k,c2”] Berend Thanks

Re: [R] Replace a column value on condition

2015-03-23 Thread PIKAL Petr
Hi Thanks for data df4$c3[df4$id==2] - df4$c2[df4$id==2] is one option df4$c3 - ifelse(df4$id==2, df4$c2, df4$c3) If you have NA values you shall use which like in sel - which(df4$id==2) df4$c3[sel] - df4$c2[sel] Cheers Petr -Original Message- From: R-help

Re: [R] Conversion of Matlab code to an R code

2015-03-23 Thread Roy Mendelssohn - NOAA Federal
On Mar 23, 2015, at 8:10 AM, Abhinaba Roy abhinabaro...@gmail.com wrote: Hi, Can a Matlab code be converted to R code? I am finding it difficult to do so. Could you please help me out with it. Your help will be highly appreciated. snip If you mean something that can do an automatic

[R] Superimposing 2 curves on the same graph with par(new=TRUE)

2015-03-23 Thread varin sacha
Dear R-Experts, I try to superimpose/present 2 curves/plots on the same graph. I would like the result/graph to be readable. For that, I use the par(new=TRUE) argument but on the Y-axis there is a superposition of writings and the Y-axis becomes unreadable. How can I solve this problem ? Here

Re: [R] 1st script

2015-03-23 Thread William Dunlap
# Import CSV file into a data frame. case_weights - read.csv(file = case_weights.csv) # For each row, take the number in the Weight column and replicate it # as many times as there are in each count column. LC09 - rep(case_weights$Weight, case_weights$LC09) LC10 - rep(case_weights$Weight,

Re: [R] Conversion of Matlab code to an R code

2015-03-23 Thread Marc Schwartz
On Mar 23, 2015, at 10:10 AM, Abhinaba Roy abhinabaro...@gmail.com wrote: Hi, Can a Matlab code be converted to R code? I am finding it difficult to do so. Could you please help me out with it. Your help will be highly appreciated. Here comes the Matlab code snip of code Hi,

Re: [R] 1st script

2015-03-23 Thread PIKAL Petr
Hi use list and numeric indexing. As you did not provide reproducibe example here is possible way. dat - data.frame(w=abs(rnorm(10)), LC09=round(runif(10)*10), LC10=round(runif(10)*10)) lll - vector(list, 2) k=0 for(i in 2:3) { k=k+1 lll[[k]] - rep(dat$w, dat[,i]) } names(lll)-names(dat[,2:3])

Re: [R] Fast evaluation of functions in 3D domains

2015-03-23 Thread Rolf Turner
On 23/03/15 23:44, lluis.hurt...@uv.es wrote: Dear all, I am currently working with the spatstat package with 3D samples. I am trying to evaluate a non analytical function over the window that encloses the sample and I need to know which is the fastest way of doing it. I gather that you

Re: [R] Superimposing 2 curves on the same graph with par(new=TRUE)

2015-03-23 Thread Clint Bowman
Try: plot(Date,MORTSBu,lwd=2,lty=dashed,axes=F,xlab=,ylab=) Clint BowmanINTERNET: cl...@ecy.wa.gov Air Quality Modeler INTERNET: cl...@math.utah.edu Department of Ecology VOICE: (360) 407-6815 PO Box 47600FAX:

[R] Fast evaluation of functions in 3D domains

2015-03-23 Thread Lluis.Hurtado
Dear all, I am currently working with the spatstat package with 3D samples. I am trying to evaluate a non analytical function over the window that encloses the sample and I need to know which is the fastest way of doing it. The function input is a 3 coordinate position in the window (x,y,z)

Re: [R] mboost: Proportional odds boosting model - how to specify the offset?

2015-03-23 Thread Nussbaum Madlene
Dear Benjamin This solved the problem. On 03/20/2015 04:06 PM, Benjamin Hofner wrote: First, mboost expects the offset to be a scalar or a vector with length equal to the number of observations. (i.e., x'beta) ok, I could not figure out how to get the correct link vector from the polr.

Re: [R] Superimposing 2 curves on the same graph with par(new=TRUE)

2015-03-23 Thread varin sacha
Dear all, Excellent, many thanks for everything. Best,S De : Boris Steipe boris.ste...@utoronto.ca À : Clint Bowman cl...@ecy.wa.gov Cc : varin sacha varinsa...@yahoo.fr; r-help@r-project.org r-help@r-project.org Envoyé le : Lundi 23 mars 2015 19h32 Objet : Re: [R] Superimposing 2

Re: [R] Joining two datasets - recursive procedure?

2015-03-23 Thread Luca Meyer
Hi David, hello R-experts Thank you for your input. I have tried the syntax you suggested but unfortunately the marginal distributions v1xv2 change after the manipulation. Please see below or https://www.dropbox.com/s/qhmpkkrejjkpbkx/sample_code.txt?dl=0 for the syntax. rm(list=ls()) # this

[R] My question: glm - binomial family (Probit vs Logit)

2015-03-23 Thread Nadia_001
Hi, I try to compare the binomial family (i.e. Logit vs Probit) and in order to do that, I need to make sure that I have the same variance for both link fuction. Therefore, I need to change the link scake s of the Logit. By default, it is setted equal to 1 (s=1) and I wanted to set it equal to

Re: [R] 1st script

2015-03-23 Thread PIKAL Petr
Hi -Original Message- From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of memilanuk Sent: Monday, March 23, 2015 8:41 AM To: r-h...@stat.math.ethz.ch Subject: Re: [R] 1st script On 03/22/2015 10:58 PM, PIKAL Petr wrote: use list and numeric indexing. As you did not

Re: [R-es] Combinatoria

2015-03-23 Thread Jorge I Velez
Hola Miguel, Para que crear la funcion mCRn que propones si con R choose(4, 2) [1] 6 obtienes el mismo resultado? Aunque reconozco que son importantes, no se si en realidad las funciones que mencionas son imprescindibles. En cuanto al sistema de ecuaciones no lineales que planteas, dale una

Re: [R] 1st script

2015-03-23 Thread memilanuk
On 03/22/2015 10:58 PM, PIKAL Petr wrote: use list and numeric indexing. As you did not provide reproducibe example here is possible way. dat - data.frame(w=abs(rnorm(10)), LC09=round(runif(10)*10), LC10=round(runif(10)*10)) lll - vector(list, 2) k=0 for(i in 2:3) { k=k+1 lll[[k]] -

[R] the making of _R_ eBooks

2015-03-23 Thread Dr. Wolfgang Lindner
Dear list members, I like the look and feel of the eBook versions of the R manuals very much. So I would like to generate eBooks (teaching material etc) in that look. Q1: is there a description how the _R_ ebooks have been produced? Q2: which (free) software was used for them? Q3: any other

Re: [R] the making of _R_ eBooks

2015-03-23 Thread Sven E. Templer
Q3: any other recommendations? You might be interested in the very easy to use R markdown, see: http://rmarkdown.rstudio.com/ [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see

Re: [R] Fast evaluation of functions in 3D domains

2015-03-23 Thread David Winsemius
On Mar 23, 2015, at 3:44 AM, lluis.hurt...@uv.es lluis.hurt...@uv.es wrote: Dear all, I am currently working with the spatstat package with 3D samples. I am trying to evaluate a non analytical function over the window that encloses the sample and I need to know which is the fastest

Re: [R] Conversion of Matlab code to an R code

2015-03-23 Thread John C Frain
You do not say why you want to convert. I your reason is that you do not have access to Matlab you might try to run your program in Octave. I think that there are some syntax errors in your Matlab code. Most of these, but not all, I think, may have been caused, (as you have already been told) by

Re: [R] Superimposing 2 curves on the same graph with par(new=TRUE)

2015-03-23 Thread Marc Schwartz
Hi, If he wants the two sets of data plotted on the same y axis scale, with the range of the y axis adjusted to the data, an alternative to the use of plot() and points() is: matplot(Date, cbind(MORTSFr, MORTSBu), type = l) See ?matplot Regards, Marc Schwartz On Mar 23, 2015, at 12:04

Re: [R] Superimposing 2 curves on the same graph with par(new=TRUE)

2015-03-23 Thread Boris Steipe
Here is how: plot(Date,MORTSFr,type=l, ylim=c(0,max(MORTSFr))) points(Date,MORTSBu,type=l,lty=2) If you don't use the same scale for the two plots, you are probably misrepresenting the data. If you want to plot relative change, normalize the data before plotting. norm - function(x) {(x -

Re: [R] Superimposing 2 curves on the same graph with par(new=TRUE)

2015-03-23 Thread Boris Steipe
... which is exactly what he shouldn't do because now it the plot falsely asserts that both curves are plotted to the same scale. B. On Mar 23, 2015, at 12:34 PM, Clint Bowman cl...@ecy.wa.gov wrote: Try: plot(Date,MORTSBu,lwd=2,lty=dashed,axes=F,xlab=,ylab=) Clint Bowman

Re: [R] the making of _R_ eBooks

2015-03-23 Thread Dr. Wolfgang Lindner
Dear John, thank you for your kind answer and the historical excursions. Your detailed post may help and inform other readers, too. Thanks for your hint to TexStudio (I use[d] Texworks, Texshell, WinEDT). So TeX will not be the problem, but I have first to learn about texinfo. | Thanks for any

Re: [R] Optimization to fit data to custom density distribution

2015-03-23 Thread Johannes Radinger
On Sat, Mar 21, 2015 at 3:41 PM, Prof Brian Ripley rip...@stats.ox.ac.uk wrote: On 21/03/2015 14:27, Johannes Radinger wrote: Thanks for the fast response. The fitdistr() function works well for the predefined density functions. However, what is the recommended approach to optimize/fit a

Re: [R] Superimposing 2 curves on the same graph with par(new=TRUE)

2015-03-23 Thread Clint Bowman
Agreed--I neglected to add the secondary y-axis (shouldn't hit send so fast.) Clint BowmanINTERNET: cl...@ecy.wa.gov Air Quality Modeler INTERNET: cl...@math.utah.edu Department of Ecology VOICE: (360) 407-6815 PO Box 47600

Re: [R] the making of _R_ eBooks

2015-03-23 Thread Dr. Wolfgang Lindner
Dear Prof. Ripley, thank you for the 2 links w/r to my question. Section 2.3 in 'R Installation and Administration' seems very condensed to me. But there is a mention of Calibre, I will read about all that. | PLEASE do read the posting guide | PLEASE do! I did. Best Wolfgang Lindner -

[R] Connecting Context layer to hidden layer in RSNNS package in R

2015-03-23 Thread im db
 Dear All, I'm using RSNNS package in R to simulate Elman Network (1991).Here I have more than 1 hidden layer, (10,70,10). if I want to connect the hidden layer with size 70 to the context layer (It means I would like to have a context layer of size 70), what should I do? Thank you so much

Re: [R] Superimposing 2 curves on the same graph with par(new=TRUE)

2015-03-23 Thread Boris Steipe
... and that gives you a double ordinate plot, a staple of misleading statistics. Let me give you an analogy: Imagine you are on a chemistry mailing list and someone asks about the proper way to mix aluminum powder with fertilizer. Of course, as a chemist you know how. But still - and the

Re: [R] Joining two datasets - recursive procedure?

2015-03-23 Thread Luca Meyer
Dear All, I think I have found a fix developing the draft syntax I have provided yesterday, see below or https://www.dropbox.com/s/pbz9dcgxu6ljj8x/sample_code_1.txt?dl=0. Only desirable improvement is related to the block where I compute the modified v4 (lines 46-60 in the attached file).

[R] Confusion about cointegration for AR(M) model

2015-03-23 Thread Zhou, Cindy
I have a question regarding the concept of cointegration. Does the concept of cointegration apply to any model? Or it only applies to OLS? For example, I fit an autoregressive error model , AR(M) y_t=x_t*�+v_t v_t=-�_1*v_(t-1)-...-�_m*v_(t-m)+�_t If the ADF tests prove that both dependent

[R] plm, multicollinearity and model checking

2015-03-23 Thread A. John Woodill
I'm fitting a fixed effect model with plm and know that I'm dealing with multi-collinearity between two of the independent variables. I working on identifying multicolliearity in models as a practice and have identified the variable with alias(), then verified with vif(). I was also able to use