similar to: how can I save the estimates of a regression model in a file?

Displaying 20 results from an estimated 100 matches similar to: "how can I save the estimates of a regression model in a file?"

2007 Mar 03
1
GarchOxFit Interface
Hello, I am having problems with the GarchOxFit. I have my Ox Console instaled in c:\Program Files\ox, and when I execute the GarchOxFit the result is C:\Ox\bin\oxl.exe not found. I there any posiblility to execute the command without installing again Ox in c:\? My OS is windows XP. Thankyou for your help. Pilar Grau
2008 Jan 23
1
Problem with geom_line
Se ha borrado un texto insertado con un juego de caracteres sin especificar... Nombre: no disponible Url: https://stat.ethz.ch/pipermail/r-help/attachments/20080123/ab90f75d/attachment.pl
2011 Aug 25
2
Create two uniformly random variables correlated
Hello, I want to create two random variables (x1,x2) both with uniform distribution bounded by (-1) and (1) that has a correlation of 0.6 between them. Does somebody know how I can do it? For normal random variables I known how to implement it with the rmvnorm command but I don't know how to do it with variables uniformly distributed. Thanks a lot. Alexandra [[alternative HTML
2011 Aug 25
2
How to store the output of a loop into a matrix??
Hello, I want to create a matrix of N random numbers with a uniform distributions. Later, I want to repeat T times each row of this matrix. For this I do the following loop: N<-45 T<-10 n<-N*T a<-matrix(runif(N,min=-1,max=1),nr=N) mymat<-matrix(rep(NA,n),nr=n,nc=1) for(i in i:N){ b<-rep(a[i,],T) mymat[i,]<-b } Mi problem is that with this loop I can see the output of the
2017 Jan 10
2
AYUDA TukeyHSD
Hola, estoy intentando hacer un Tukey post test y no me lo permite. Hice el anova con aov sin problemas, pero al hacer el Tukey, me dice: > TukeyHSD(ANOVAGalMan3,Sample*`Purification-step`,ordered = TRUE)Error in `[.data.frame`(mf, mf.cols[[i]]) : undefined columns selected aclaro que ANOVAGalMan3 es el resultado de anova. la tabla origen tiene la estructura: Sample Purification-step
2012 Mar 19
2
fitted values with locfit
Dear memberships, I'm trying to estimate the following multivariate local regression model using the "locfit" package: BMI=m1(RCC)+m2(WCC) where (m1) and (m2) are unknown smooth functions. My problem is that once I get the regression done I cannot get the fitted values of each of this smooth functions (m1) and (m2). What I write is the following library(locfit) data(ais)
2013 Jun 29
1
R en tu navegador
Me ha parecido una opción muy interesante la web roncloud.com comentada por Carlos Ortega. ¿Alguien sabe si pueden subirse ficheros R.data a esta web? Muchas gracias Pilar de la Cruz Message: 4 Date: Fri, 28 Jun 2013 22:33:09 +0200 From: Carlos Ortega < cof@qualityexcellence.es> To: Lista R <r-help-es@r-project.org> Subject: [R-es] R en tu navegador... Message-ID:
2008 Mar 07
1
Trouble with R CMD check
Friends, I changed one line of a package at the source level and then rebuilt it. When I run R CMD check, I get an error: installing R.css in C:/polsplineRS.Rcheck ---------- Making package polsplineRS ------------ adding build stamp to DESCRIPTION making DLL ... making hareall.d from hareall.c making heftall.d from heftall.c making lsdall.d from lsdall.c making lspecall.d from lspecall.c
2017 Oct 03
2
Procesamiento de Lenguaje Natural
Hola: Me gustaría que me recomendarais paquetes o alguna forma de "hincarle el diente" para empezar a investigar en la siguiente cuestión. El proyecto trata de que, a partir de un numero grande de documentos pdf que contienen, básicamente, Notas Simples del Registro de la Propiedad deseamos extraer para cada uno de esos documentos una serie de ítems de información, a saber: -Finca
2012 Dec 10
2
CISTI'2013 Doctoral Symposium - CFP, Lisbon, June 19 - 23, 2013
*************************************************************************************************** CISTI'2013 DOCTORAL SYMPOSIUM 8th Iberian Conference on Information Systems and Technologies Lisbn, Portugal, June 19 - 23, 2013 http://www.aisti.eu/cisti2013/index.php?option=com_content&view=article&id=64&Itemid=68&lang=en
2012 Dec 10
2
CISTI'2013 Doctoral Symposium - CFP, Lisbon, June 19 - 23, 2013
*************************************************************************************************** CISTI'2013 DOCTORAL SYMPOSIUM 8th Iberian Conference on Information Systems and Technologies Lisbn, Portugal, June 19 - 23, 2013 http://www.aisti.eu/cisti2013/index.php?option=com_content&view=article&id=64&Itemid=68&lang=en
2008 Jun 29
2
runing a program
I am an old user of Microsoft and a new user in Ubunto 8. with wine and I install some windows programs and add my licenses, test them and each one were running OK. I off my computer and when I got back to it, I no longer have in wine-->programs the list of my software. Only notepad is shown. I try to make double click on my *.exe files, but no program runs. How can I fix this. Thanks for
2008 Jan 18
1
Leyenda
Hola estoy intentando colocar la leyenda de un gráfico fuera de la plot region, es posible hacer esto? Como? Mi código es el siguiente: > df LENGTH LAT 091639 10.002 42.26282 091640 30.808 42.26834 091641 21.591 42.31689 091642 22.030 41.53246 091643 22.744 42.01954 091644 12.702 42.67751 091645 39.728 42.06479 091647 63.057 41.25283 091648 19.523 41.01925 091649 13.336 42.46904
2008 Jun 14
1
restricted coefficient and factor in linear regression.
Hi, my data set is data.frame(id, yr, y, l, e, k). I would like to estimate Lee and Schmidts (1993, OUP) model in R. My colleague wrote SAS code as follows: ** procedures for creating dummy variables are omitted ** ** di# and dt# are dummy variables for industry and time ** data a2; merge a1 a2 a; by id yr; proc sysnlin maxit=100 outest=beta2; endogenous y; exogenous l e k
2010 Sep 05
0
cov.unscaled in NLS - how to define cov.scaled to make comparable to SAS proc NLIN output - and theoretically WHY are they different
I am running a 3-parameter nonlinear fit using the default Gauss-Newton method of nls. initialValues.L = list(b=4,d=0.04,t=180); fit.nls.L = nls( myModel.nlm , fData.L, start = initialValues.L, control = nls.control(warnOnly = TRUE), trace=T ); summary.nls.L = summary(fit.nls.L); I run the same analysis in SAS proc NLIN. proc nlin data=apples outest=a; parms b=4 d=.04 t=180; model Y =
2008 Jun 13
0
restricted coefficient and factor for linear regression.
Hi, my data set is data.frame(id, yr, y, l, e, k). I would like to estimate Lee and Schmidts (1993, OUP) model in R. My colleague wrote SAS code as follows: ** procedures for creating dummy variables are omitted ** ** di# and dt# are dummy variables for industry and time ** data a2; merge a1 a2 a; by id yr; proc sysnlin maxit=100 outest=beta2; endogenous y; exogenous l e k
2012 Jun 26
0
ALQUILER PARA GRUPO HOTELERO o INVERSORES RENTISTAS
Mail ¿Problemas de Visuallizacion?   Ver OnLine   | Enviar a un Amigo  |            ALQUILER PARA GRUPO HOTELERO                  Mexico al 800 entre Tacuari y Piedras a cuadra y media de 9 de Julio     Edificio en Block a Estrenar PB mas 7 Pisos, son 48 suites, un Salon de 350m2, Terraza con Pileta y Deck GRAN CATEGORÍA, Excelente Lobby con doble altura     Se entrega con muebles de cocina,
2001 Jul 29
0
When will you exclude the extreme virtual PERLs before Jimmy does?
One more bright ADSL or website, and she'll furiously preserve everybody. Pam will simply close inside Pilar when the new engineers outwit at the loud FTP server. The soft untamed rumour kills over Gay's worthwhile investigator. The important IPaddr rarely propagates Petra, it rolls Nydia instead. If the haphazard scanners can cause strangely, the official PERL may dream more
2003 Dec 11
2
Paradox+Samba
Hi all... Last monday i migrated form novell 4.0 to Samba 3.0 PDC. The server acts as a file server for 30 workstations (Win2000) using an aplicattion that combines clipper (with .dbf files) and delphi (uses paradox .px and .db). Its perfomance has been very poor since i changed the server. PLEASE HELP ME, since its in production and i really don know what to do. thanks, sebastian davancens
2020 Apr 14
3
desagregar distribución de frecuencias
Hola a tod en s, Trabajo con datos de abundancia (número de individuos) por tallas (medidas al medio centímetro inferior) de diferentes especies de peces y mis datos base son el número medido de peces por talla. Necesitaría vuestra ayuda para transformar las distribuciones de frecuencias de talla a los datos brutos que las generaían. Es decir, pasar de algo como esto 8           1 8.5