Displaying 20 results from an estimated 1000 matches similar to: "Modelos Log Lineales"
2013 Nov 13
1
Resumen de R-help-es, Vol 57, Envío 13
por favor alguien podria ayudarme con el paquete climatol, tengo ulgunos
problemas para ingresar la informaciòn
gracias
El 13 de noviembre de 2013 14:49, <r-help-es-request@r-project.org>escribió:
> Envíe los mensajes para la lista R-help-es a
> r-help-es@r-project.org
>
> Para subscribirse o anular su subscripción a través de la WEB
>
2012 Nov 03
6
Parámetros iniciales para ajustes no lineales
Hola a todos
estoy aplicando la función polinómica de Hossfeld [1], y algunos otros modelos no lineales para tratar de ajustarlos a un grupo de datos forestales,
[1] Y= b*t*exp(c)/(t*exp(c)+a)
Al colocar la función en R con parámetros estimados, me devuelve los siguiente:
## model1 <- nls(ho ~ (b*edad*exp(c)/(edad*exp(c)+a)), data=nigra,
start=list(a=0.005,b=0.08,c=-0.00006),
2020 Sep 24
2
Modelo potencial
Buen día
¿alguien sabe como puedo hacer un modelo de la forma y=ax ^b con el
metodo minimos cuadrados no lineales nls?
agradezco mucho la información
[[alternative HTML version deleted]]
2013 Jan 14
2
Reportar Bondad de ajuste de un Modelo No Lineal
Hola:
tengo un pequeño problemita que es más bien estadístico que específico de R, pero de todos modos espero me puedan dar una mano.
Quiero encontrar una forma de reportar la Bondad de ajuste de un modelo No Lineal. Estuve buscando y leyendo y parece que tal cosa no es posible o al menos no es fiable, desde el punto de vista estadístico.
El tema es que quiero mandar un trabajo a una
2014 Aug 06
2
concatenación de regresiones lineales
Hola, soy nuevo en R y en esta lista de distribución, pero a ver si alguien me puede echar una mano.
Tengo una matriz
de datos con 1539 filas, constituida por 171 eventos distintos medidos 9 veces
cada uno. Lo que quiero es, para cada evento, hacer una regresión lineal entre
la variable dependiente medida 9 veces en cada evento y el tiempo, y obtener el
valor de 'r' para cada evento.
2014 Oct 08
2
Optimización con restricciones lineales
Hola a todos,
Estoy intentando resolver un problema de optimización con R con
restricciones lineales, pero no consigo incluir dichas restricciones. Es
decir,
f<-function(w){
sd(...) # desviación típica de ciertos datos
}
optim(rep(1/2,8),fn = f,lower=0,upper=1,method='L-BFGS-B') # no se como
incluir aquí las restricciones
Las restricciones son: la suma de los w_i es 1 y todos los
2011 May 11
3
Vermunt's LEM in R
I don't know of any R package that can match all the functionality of LEM
eg fitting equality constraints to model parameters a la LISREL.
WRT dumping tables, I would have thought that as.data.frame.table does
pretty much what you want, [not tested]
newtab <- as.data.frame(table(a,b,c))
cat("dim\n")
for(i in seq(1, ncol(newtab)-1) {
cat(nlevels(newtab[,1]," ")
}
2017 Feb 17
2
Modelos con datos normalizaddos
OK, para arboles no, pero para otro tipo de modelos como un modelo lineal si no?
O para uqe tipo de modelos tengo que normalizar los datos???
________________________________
De: Manuel Spínola <mspinola10 en gmail.com>
Enviado: viernes, 17 de febrero de 2017 19:06
Para: Jesús Para Fernández
Cc: r-help-es en r-project.org
Asunto: Re: [R-es] Modelos con datos normalizaddos
Hola Jesús,
No
2004 Nov 07
3
Calling Other (non-C or Fortran) Programs from R
Hi!
I wonder if anyone has experiences of calling other programs
from R (i.e., not C or Fortran programs).
Specifically I want to call LEM from R and execute it in a
loop to process its output in R. Thanks,
Tim Liao
2002 Oct 26
1
libsmbclient in Mac OS X / Darwin
Dear folks:
First of all, thanks for a great product and please do keep up your fine
job with samba.
As a humble contribution to your project, below is a patch to configure.in
that allows libsmbclient.so to be correctly built in my system (Mac with
Mac OS X). I hope this to be useful.
I also noted that the generated Makefile, did not correctly install the
library as the 'install'
2011 Aug 02
1
Modelo Regresión Lineal
Hola Juan.
La regresión lineal es un método muy difundido y estoy seguro que con
una breve búsqueda en internet podrás encontrar excelentes manuales en
español.
Puedes adelantar con saber que la función básica para regresiones
lineales es lm() (de linear model) y para las variables que mencionas
podrías utilizar:
ajuste<-lm(razco_pr~razco_ps+razco_pc, data=tusdatos)
summary(ajuste)
2011 Jan 06
1
Problems with FullTilt, Ubuntu 10.04 and Wine 1.3.10
Hi!
Wine 1.3.10 here, on Ubuntu 10.04 64 bit.
After maybe a week or two since last time (no probs back then), today I launched again FullTiltPoker: no way to connect to Full Tilt game server.
When it comes to the connection, the Windows executable tells me:
Trying again...
Trying again...
Trying again...
...
Launching the executable with WINEDEBUG="warn+all", at the same time I get
2017 Jul 19
3
remover y reemplazar
Javier hay algo que no entiendo, no aclaras bien porque el filtrado por fechas para modificar el valor de un campo según su valor actual, sino aclaras bien eso las soluciones que te brinden por buenas que sean puede que no resuelvan el problema porque va a satisfacer totalmente los casos, igual por lo que dices no entiendo lo de las fechas, solo vas a rectificar los valores erróneos de fechas
2009 Sep 09
5
Newbie question: undefined method 'number_with_delimiter'(probably configuration problem)
Hi all:
i am using gem to insall rails 2.3.3 and using $rails myapp to
generate my application, but strangely i can''t use the number_helper
below is my env:
export RUBY_HOME=$HOME/ruby
export GEM_HOME=$HOME/gems
export RUBYLIB=$RUBY_HOME/lib:$RUBY_HOME/lib/ruby:$RUBY_HOME/lib/
site_ruby/1.8
export PATH=$HOME/gems/bin:$HOME/ruby/bin:
and:
$ locate number_helper.rb
2009 Aug 17
4
number in R
Hi,
i export data from an csv file like this :
Data <- read.csv2("c:/Art.csv",sep=",") # import data into R
> Data <- Data [1:5,1:5]# extracting the first 5 rows and columns
> Data
Policy.Number AXA.Entity Country LoB ccy.data
1 6e+13 BNL BNL P EUR
2 6e+13 USA BNL P EUR
3 6e+13 UK BNL
2006 Aug 24
2
my error with augPred
Dear all
I try to refine my nlme models and with partial success. The model is
refined and fitted (using Pinheiro/Bates book as a tutorial) but when
I try to plot
plot(augPred(fit4))
I obtain
Error in predict.nlme(object, value[1:(nrow(value)/nL), , drop =
FALSE], :
Levels (0,3.5],(3.5,5],(5,7],(7,Inf] not allowed for
vykon.fac
>
Is it due to the fact that I have unbalanced
2017 Jul 19
4
remover y reemplazar
Se ha borrado un adjunto en formato HTML...
URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20170719/597123ea/attachment.html>
2011 Mar 22
2
Popularity of R, SAS, SPSS, Stata, Statistica, S-PLUS updated
Greetings,
I've just put out the latest version of "The Popularity of Data Analysis Software" at http://r4stats.com/popularity. This update includes complete data for 2010, the addition of number of blogs for each software, more coverage of Statistica, and, where possible, measures regarding the implementations of the SAS Language: Carolina and the World Programming System (WPS).
2012 Mar 21
3
(sin asunto)
Hola Buenas noches
Alguien me podria indicar en que paquete puedo encontras modelos lineales y cuadratico para ajustar una serie de datos
Gracias
[[alternative HTML version deleted]]
2003 Jul 04
2
newbie profile path problem
Hi all,
I've been working on setting up samba for a small home network, 3
win98se machines, and RH9 with samba 2.2.7
Roving profiles are working, with domain logins, just fine. The problem
I'm having is that although I _think_ I've set it up properly, the
profile items get copied into the users home directory, not the the
directory I've set up.
I've gone through all the faqs