Displaying 20 results from an estimated 200 matches similar to: "Approaches of Frailty estimation: coxme vs coxph(...frailty(id, dist='gauss'))"
2009 Oct 08
0
Question on NLTM package
Dear all,
I didn't get any suggestion for my querry concerning the NLTM package so I am re-posting it hoping that someone can give me any clue. I apologize for doing so. Please find attached a copy of my previous email:
Dear R users,
I have a question concerning the nltm package. Before posting to the R list I first contacted the author of the package twice but no succes. May be I've
2009 Oct 06
0
Problem with NLTM package
Dear R users,
I have a question concerning the nltm package. Before posting to the R list I first contacted the author of the package twice but no succes. May be I've got the wrong email! My question is about the object "surv" given in the package "nltm". As explained, the object "surv" represents the MLE estimates of the baseline survival function evaluated at
2011 Jul 12
1
Question re complex survey design and cure models
Hello all,
I am using AddHealth data to fit a cure, aka split population model using nltm. I am not sure how to account for the complex survey design - does anyone have any suggestions? Any help would be greatly appreciated!
Sincerely,
Sam
2020 Aug 25
5
accessing foreign AD users to NT domain
Rowland penny via samba ha scritto il 25/08/20 alle 12:21:
> [...]
> Try adding 'nltm auth = yes' to the smb.conf, it defaulted to 'no' at 4.5.0
thanks Rowland I have tried to change ntlm auth to yes but AD users
continue to have problems connecting to the shares...
Piviul
2004 Jan 25
1
Connection refused, access denied (Windows XP trying to connect on samba's shared printer)
Jonny,
Did you ever get your shared printer issue resolved? If so, how? I'm
having exactly the
same problem and I didn't see that anyone responded to your request for
help on the
lists.samba.org group.
My setup and problem is pretty much the same as yours was Win XP pro can
see printer
share on Linux RH9.0 (kernel 2.4.20), but cannot get access once the
drivers are configured.
Any
2020 Aug 25
0
accessing foreign AD users to NT domain
On 25/08/2020 08:28, Piviul via samba wrote:
> Rowland penny via samba ha scritto il 24/08/20 alle 17:39:
>> [...]
>> As far as I am aware, SMBv1 is still readily available on Win7, but
>> from Samba 4.11.0, it is now disabled on Samba, so if you must use
>> SMBv1, you will need to set:
>>
>> client min protocol = NT1
>>
>> server min protocol =
2020 Aug 26
1
Fwd: Re: accessing foreign AD users to NT domain
On 26/08/2020 08:07, Piviul via samba wrote:
> I've send this message yesterday but I've not received it from
> samba at lists.samba.org: I try to send it again...
>
> Piviul
>
> -------- Messaggio Inoltrato --------
> Oggetto: Re: [Samba] accessing foreign AD users to NT domain
> Data: Tue, 25 Aug 2020 13:05:35 +0200
> Mittente: Piviul <piviul at
2008 May 17
0
fast multipole methods(FMM)/fast Gauss transfrorm(FGT)/improved fast gauss transform (IGFT)
I'm just curious, but wondering if there has been any work in making
these algorithms available in R. They are aimed at accelerating
matrix-vector products using approximation ideas, and might be useful in
applications such as kernel machines, Gaussian processes/kriging.
Thanks
Mark Palmer
Landscape Monitoring and Modelling
CSIRO Mathematical and
2012 Oct 31
1
gauss fit with outlier removal
I have distribution that are gaussian to a good approximation. I fit a
gaussian to these distributons. Once in a while there is an outlier. Could
someone suggest a robust method (R package already?) that removes those
outliers and redoes the gaussian fit to get a better fit? Thanks.
[[alternative HTML version deleted]]
2001 Apr 07
0
Ox (was: Using Gauss with R)
I'll be even more tangent. Those interested in Ox, see
http://www.de.ufpe.br/~cribari/ox.pdf
Cheers, Francisco.
Date: Fri, 6 Apr 2001 09:34:19 +0100 (BST)
From: Bill Simpson <wsi at gcal.ac.uk>
Subject: Re: [R] Using Gauss with R
This is a tangent to your question.
The economist Jurgen Doornik has written a language called Ox:
http://www.nuff.ox.ac.uk/Users/Doornik/doc/ox/ox.htm
2003 Sep 04
1
Looking for R Equivalent of Gauss Statements
Hi,
I am translating some Gauss code to R. Gauss has an interesting way of
handling constraints. Observe the following code snipplet:
e1 = x[.,23] .eq 0; @ remove obs with Regular Hours = 0 @
e2 = x[.,12] .gt 1; @ remove obs with non-regular work status @
e3 = x[.,4] .lt 15; @ remove obs with agricultural and mining
industry code (< 15)@
esum = e1 + e2 + e3;
e = esum .gt 0; @
2004 May 28
3
gauss.hermite?
The search at www.r-project.org mentioned a function
"gauss.hermite{rmutil}". However, 'install.packages("rmutil")'
produced, 'No package "rmutil" on CRAN.' How can I find the current
status of "gauss.hermite" and "rmutil"?
Thanks,
Spencer Graves
2005 Aug 15
2
R equivalent to Fortran, GAUSS, or Perl's "goto"
Does R have something equivalent to the "goto" in Perl?
If so, can you please tell me what it is? I cannot find
it in the Ref Manual or the Language Manual.
Thanks.
- Warren
Warren Lamboy
USDA-ARS Plant Genetic Resources Unit
Geneva, NY, USA 14456
2006 Feb 01
1
Gauss-Krüger coordinates system
Dear All,
I need to convert some Northing-Easting coordinates from the Gauss-Krüger system into latitude-longitude.
Any suggestions on how to do it?
Regards,
Marco
Marco Giannitrapani
Statistical Consultant
Tel: +44151373 5945
Email:
Internet: http://www.shell.com
[[alternative HTML version deleted]]
2006 Feb 27
1
gauss.hermite function
Hi,
I am trying to find a function that returns simply the weights and
points of an n point gauss hermite integeration, so that I can use them
to fit a non-standard likelihood.
I have found some documentation for the function 'gauss.hermite' written
by jim lindley, but can't find the actual binary on CRAN
I'm aware there are lots of functions like glmm, glmmML etc to fit mixed
2006 Sep 04
1
how to fit gauss beam?
Hello,
I am having a hard time fitting a gauss beam using R. In
gnutplot I did something like
$ w(z) = w0 * sqrt(1+(z/z0)**2)
$ fit w(z) 'before_eom.txt' using 1:2 via w0, z0
to obtain w0 and z0. Now I want to do the same in R. I tried
a linear model like this (r = radius, z = distance):
beam <- function(z) {
sum(sqrt(1 + z**2))
}
lm(r ~ I(beam(z)), data = before_eom)
Which
2009 Nov 25
1
Interpretation of plots in linear regression models (verification of Gauss-Markov hypothesis)
An embedded and charset-unspecified text was scrubbed...
Name: not available
URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20091125/3f0e364b/attachment-0001.pl>
2010 Nov 14
1
Integrate to 1? (gauss.quad)
Does anyone see why my code does not integrate to 1?
library(statmod)
mu <- 0
s <- 1
Q <- 5
qq <- gauss.quad(Q, kind='hermite')
sum((1/(s*sqrt(2*pi))) * exp(-((qq$nodes-mu)^2/(2*s^2))) * qq$weights)
### This does what's it is supposed to
myNorm <- function(theta) (1/(s*sqrt(2*pi))) * exp(-((theta-mu)^2/(2*s^2)))
integrate(myNorm, -Inf, Inf)
2007 Dec 18
0
Import GAUSS .FMT files
Dear All,
Is it possible to import GAUSS .FMT files into R?
Thanks for your time.
Kind Regards,
Pedro N. Rodriguez
[[alternative HTML version deleted]]
2012 May 09
2
problem with Gauss Hermite ( x and w )
Hi all,
I am using the 'gaussHermite' function from the 'pracma' library
############ CODES ###########
library(pracma)
cc=gaussHermite(10)
cc$x^2
cc$x^5
cc$x^4
############ CODES ###########
as far so good. However, it does NOT work for any NON integer values, say
############ CODES ###########
cc$x^(2.5)
cc$x^(-2.5)
############ CODES ###########
But just think about it