Re: [R] Information

2018-02-08 Thread PIKAL Petr
Hi Copy your messages to r help, others may give you better advice. Strange, I do not get such error. Beside, from m = t(matrix(data = detrend, nrow = 30)) I expect matrix result, but your str shows that m is list. > m<-list(a=rep(NA, 20), b=rep(1,20)) > colMeans(m, na.rm=T) Error in colMeans(m,

Re: [R-es] Ayuda OVER_QUERY_LIMIT

2018-02-08 Thread David Contreras
Muchas gracias Javier como siempre por tu ayuda, en este momento el tema de presupuesto es algo complicado. Pero si tienes toda la razón con los comentarios. *David Contreras* Estadístico Móvil 3124345188. <%2B57%20%281%29%204841410%20Ext.%20257> davidcontrera...@gmail.com

Re: [R] plm package

2018-02-08 Thread Edoardo Baldoni
Hi, maybe the function do not automatically understand, as well as you do, what are the N and T dimensions of your panel data frame. You could try using the index parameter of the function to specify your id and time variables. Edoardo 2018-02-08 15:04 GMT+01:00 PAOLO PILI

[R] plm package

2018-02-08 Thread PAOLO PILI
Hello, I got a problem using package plm. When I give the command "grun.fe<-plm(Y~X1+X2...+Xn, data=data, model="within")" I got this answer: "Error: cannot allocate vector of size 289.7 Gb". The database that I am using is not so big, so I don't understand to what it refers to. Can you help

Re: [R] plotting the regression coefficients

2018-02-08 Thread greg holly
Hi Bert; Thanks so much for this. It is much appreciated. Regards, Greg On Thu, Feb 8, 2018 at 3:29 PM, Bert Gunter wrote: > Fwiw, encoding magnitude in color is generally a bad idea. Using > area(*not* radius) is also not great, but maybe it will work for you. > > See

Re: [R] plotting the regression coefficients

2018-02-08 Thread greg holly
Hi Petr; Thanks so much. Exactly this is what I need. I will play to change color and so on but this backbound is perfect to me. I do appreciate your help and support. Regards, Greg On Thu, Feb 8, 2018 at 1:29 PM, PIKAL Petr wrote: > Hi > > I copied your values to R,

Re: [R] plotting the regression coefficients

2018-02-08 Thread Bert Gunter
Fwiw, encoding magnitude in color is generally a bad idea. Using area(*not* radius) is also not great, but maybe it will work for you. See here for some explanation: https://www.amazon.com/Visual-Display-Quantitative-Information/dp/0961392142/ref=sr_1_1?s=books=UTF8=1518092778=1-1=Tufte Bert

Re: [R] Information

2018-02-08 Thread PIKAL Petr
Hi The errors are self explanatory. Function needs to be fed by numeric values. What is the result of str(m) or str(detrend) Cheers Petr > -Original Message- > From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Kabouch > Nourdine via R-help > Sent: Thursday, February 8,

[R] Information

2018-02-08 Thread Kabouch Nourdine via R-help
I have a time series of 1095 data corresponding to a daily data of three years. I want to know how to use ma(timeserie, order=??, centre=??) to detect the trend: which order is suitable and what is the difference between centre= true or false. How to avoid these errors: 1-Error in timeserie -

Re: [R] plotting the regression coefficients

2018-02-08 Thread PIKAL Petr
Hi I copied your values to R, here it is > dput(temp) temp <- structure(list(par1 = structure(1:4, .Label = c("x1", "x2", "x3", "x4"), class = "factor"), y1 = c(-0.19, 0.45, -0.09, -0.16), y2 = c(0.4, -0.75, 0.14, -0.01), y3 = c(-0.06, -8.67, 1.42, 2.21), y4 = c(0.13, -0.46, 0.06,

Re: [R-es] Ayuda OVER_QUERY_LIMIT

2018-02-08 Thread miguel.angel.rodriguez.muinos
Hola David. Acabo de encontrar dónde habla de las limitaciones. https://developers.google.com/maps/documentation/geocoding/usage-limits?hl=es-419 Fíjate que son 2500 solicitudes gratuitas por día y un máximo de 50 "solicitudes" por segundo (se cuentan tanto las peticiones del cliente como

Re: [R-es] Ayuda OVER_QUERY_LIMIT

2018-02-08 Thread miguel.angel.rodriguez.muinos
Hola David. Además de los registros que puedes procesar diariamente, debes controlar la "velocidad" con la que los envías para geocodificar. La API (gratuita) no admite envíos masivos de datos. Si pruebas a hacerlo manualmente (uno a uno) verás que funciona sin problema. Yo he tenido algún

Re: [R] plotting the regression coefficients

2018-02-08 Thread greg holly
Hi Petr; Thanks for your reply. It is much appreciated. A small example is given below for 4 independent and 4 dependent variables only. The values given are regression coefficients.I have looked ggplot documents before writing to you. Unfortunately, I could not figure out as my experience in