[R] *** caught segfault *** address 0x18, cause 'memory not mapped'

2010-03-25 Thread bernardo lagos alvarez
Hello R Community, I've been run the following codes. However, I've been getting an unusual segfault that I'm unable to trace its origin. Please give me a light to decipher the caught segfault Thanks for you attention. Bernardo. options(STERM='iESS', editor='emacsclient') rm(list = ls())

Re: [R] postscript, greek lellters

2010-01-09 Thread bernardo lagos alvarez
)*(*-x* ; *alpha*)-G*(*x* ; *alpha* , *J*)) text(0.5,0.5,lab) ?plotmath HTH, baptiste 2010/1/8 bernardo lagos alvarez blacert...@gmail.com: Dear useRs, How can I, writting the correct greek letter using postscrip or pdf function. In my  figures appears  only the first letter

Re: [R] postscript, greek lellters

2010-01-09 Thread bernardo lagos alvarez
The problem is of the .dvi. It was arranged,using the solution of Baptiste. Bernardo. 2010/1/9 bernardo lagos alvarez blacert...@gmail.com: Thank you, Dennis and Baptisite By including the. eps in my  . tex and the compilation of the .tex, this does not generate the symbol of the greek letter

[R] postscript, greek lellters

2010-01-08 Thread bernardo lagos alvarez
Dear useRs, How can I, writting the correct greek letter using postscrip or pdf function. In my figures appears only the first letter (a of alpha, n of nu) when include the graphs in my .tex doxument. I am using title( expression(bar(T)(paste(-x,;,alpha))-G(paste(x,;,alpha,,,J title(

[R] please, a help or information

2009-05-06 Thread bernardo lagos alvarez
Hi users R list I have been running some codes for some simulations. Such intensive use runif, nlm and simpleError(...) functions no more. But still remain the error that has been greatly discussed in the list of users of R, the problem !crashes RGui.¡ R for Windows GUI front-end has

[R] arima function fix the coefficients

2009-01-02 Thread bernardo lagos alvarez
Dear all, How can I fix the all coefficients of ar and ma, except for the sigma? Hoping this helps, Bernardo __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide

[R] Error en nlm(logdgenexpn, p = c(vmomest[[1]], vmomest[[2]]), x = x.genexp, : valor no finito provisto por 'nlm'

2008-03-19 Thread bernardo lagos alvarez
Dear useRs, I am analysing the behaviour of MLE for the two parameters of a kind of exponential distribution, leaving as initial values the estimators moments produced by the variation coefficient. I do using simulations, giving them an accountant, r. But running my codes remains a problem with

[R] messages from mle function

2008-03-11 Thread bernardo lagos alvarez
Dears useRs, I am using the mle function but this gives me the follow erros that I don't understand. Perhaps there is someone that can help me. thank you for you atention. Bernardo. erizo - read.csv(Datos_Stokes_1.csv, header = TRUE) head(erizo) EDAD TALLA 10 7.7 21 14.5 31

[R] matrix to gal object

2007-12-21 Thread bernardo lagos alvarez
useR's I need transform the matrix wdat [,1] [,2] [,3] [,4] [,5] [,6] [1,]010110 [2,]100110 [3,]000011 [4,]110010 [5,]111100 [6,]001000 to gal

[R] the use of the .C function

2007-10-13 Thread Bernardo Lagos Alvarez
Hi all, here others doubts, when load and running the function void gdot(double *x,double *y,int *n,double *output){ int i; *output=0; for (i=0;i*n;i++){ *output+=x[i]*y[i]; } } as following /examplesC$ R CMD SHLIB xby.c gcc -std=gnu99 -I/usr/share/R/include -I/usr/share/R/include -fpic