search for: lexis

Displaying 20 results from an estimated 41 matches for "lexis".

Did you mean: alexis
2005 Aug 11
0
kerberos_kinit_password host/SUNDEV@LEXI.COM.MX failed: Client not found in Kerberos database
I'm using Solaris 8, samba 3, kerberos and openldap. I'm anexing: log.smbd, smb.conf, krb5.conf, nsswitch.conf and the ktpass command in AD. Somebody can help me? I get this output in log.smbd: ----------------------------------- [2005/08/11 12:41:45, 0] smbd/server.c:main(802) smbd version 3.0.20rc1 started. Copyright Andrew Tridgell and the Samba Team 1992-2004 [2005/08/11
2006 Feb 08
0
Lexis maps in R
Dear R-users, Sorry for bothering you twice in a day, but I was wondering whether there is any R-function which can easily plot the single elements of a Lexis diagram. I though that Lexis.diagram(Epi) could be the case, but it just plot life times in a frame. In particular I have been searching for something similar to the function "image" which can plot either the single triangles of a Lexis diagram or the parallelograms (e.g. probability of d...
2007 Apr 25
0
Use of Lexis function to convert survival data to counting format
...survSplit() to work, but it appears to have a problem with end times on the boundaries of the intervals. (My intervals are [0,183], [184,365], [366,548], [549,730], [730,Inf]). I looked in the searchable archives and found that others had also discovered problems with survSplit() and suggested Lexis() in the Epi package. When I try to get Lexis to work, I get an error message that I cannot interpret: > addictscdf<-Lexis(entry=start,exit=stop,fail='status',breaks=c(184,366,549,730), + include=c('id','clinic','prison','meth','clinic01'...
2012 Jul 19
2
A graph with a positive y-axis intercept
Dear all,   I have a challenge with a supposedly simple graph (a scatter). I wanted to use R to create a plot/graph with a positive y-axis intercept but it does not seem to give me what I expect to see. As an example, I used the following values   > X<- c(0, 4, 8, 11) > Y<- c(8, 12, 15, 22) then I used the plot function in the base package   > plot(X, Y)   This gave me a graph
2008 Mar 02
5
[OT] "normal" (as in "Guassian")
...interested in the provenance of the name "normal distribution" (for what I'd really prefer to call the "Gaussian" distribution). According to Wikipedia, "The name "normal distribution" was coined independently by Charles S. Peirce, Francis Galton and Wilhelm Lexis around 1875." So be it, if that was the case -- but I would like to know why they chose the name "normal": what did they intend to convey? As background: I'm reflecting a bit on the usage in statistics of "everyday language" as techincal terms, as in "significant...
2012 Jun 30
2
Adjusting length of series
Hi I have a follow up question, relating to subsetting to list items. After using the list and min(sapply()) method to adjust the length of the variables, I specify a dynamic regression equation using the variables in the list. My list looks like this: Dcr<- list(Dcre1=DCred1,Dcre2=DCred2,Dcre3=DCred3,Dbobc1=DBoBC1,Dbobc2=DBoBC2,Dbobc3=DBoBC3,...) By specifying the list items with names, I
2003 Jun 16
0
new package: eha
...which the efron method might do. 3. 'weibreg': Weibull regression for left truncated and right censored data. Allows for stratification with different shape and scale parameters in the strata. Moreover, there are functions for extracting subsamples as 'rectangles' in the Lexis diagram, including external ('communal') covariates in a 'survival data frame', extracting information from risk sets, summary statistics from the Lexis diagram, etc, etc. G?ran --- G?ran Brostr?m tel: +46 90 786 5223 Department of Statistics fax: +46...
2003 Jun 16
0
new package: eha
...which the efron method might do. 3. 'weibreg': Weibull regression for left truncated and right censored data. Allows for stratification with different shape and scale parameters in the strata. Moreover, there are functions for extracting subsamples as 'rectangles' in the Lexis diagram, including external ('communal') covariates in a 'survival data frame', extracting information from risk sets, summary statistics from the Lexis diagram, etc, etc. G?ran --- G?ran Brostr?m tel: +46 90 786 5223 Department of Statistics fax: +46...
2003 Sep 16
1
Pre-RedHat 9.0 RPM Packages
Since I have a mixture of RH 7.1, 7.2, 7.3 and Advanced Server 2.1 boxes, I've made a set of RPMs for those platforms. I do not have a RedHat 8.0 box to make RPMs. Since RedHat <= 7.2 is out of support by RedHat, I don't think we'll see any officially created RPMs (but I could be wrong about that) so I thought I'd offer these to the general community. These were all built
2004 Dec 22
0
relevel expansion suggestion
To the R developers, The discussion below reminded me that I think it might be a good idea to take the Relevel function from the Lexis package and replace relevel in stats with it. This is really nothing special for epidemiology. It is fully compatible with the existing relevel (it actually contains the relevel code almost verbatim as a subset), but it has the extra functionality of combining levels. I put the .R and .Rd files i...
2011 Jul 16
2
Sweave in 2.13.1
I run Windows XP. and in a command window I get: > c:\stat\r\R-2.13.1\bin\i386\Rcmd Sweave Lexis.rnw Error in length(arg) : 'arg' is missing Calls: <Anonymous> Execution halted AND: > c:\stat\r\R-2.13.1\bin\i386\Rcmd Sweave --help Error in length(arg) : 'arg' is missing Calls: <Anonymous> Execution halted BUT: > c:\stat\r\R-2.13.0\bin\i386\Rcmd Sweave --he...
2010 Nov 17
2
Problem with plotting diagnostics - Error in object$coefficients : $ operator is invalid for atomic vectors
hi all, after fitting a multiple linear regression model <- lm(y ~ a + b+ c+d) i wanted to plot diagnostics plot(model) but get the error message Error in object$coefficients : $ operator is invalid for atomic vectors. which does not make a lot of sense, since there is no "$" - i am working with an attached dataset. can anyone help, please?? thanks a lot, kat
2019 Jul 18
4
Gráfico tiempos de supervivencia
Hola, Sí, lo puedes hacer de esta forma... #----------------- set.seed(20) DATOS <- data.frame ( ID = c (1:10) , TIEMPO = sample(1:40, 10, replace=F) , DEF = as.factor(sample(c(0,1), 10, replace=T)) ) library(ggplot2) ggplot( data = DATOS ) + geom_point( aes(x = TIEMPO, y = ID , shape = DEF, color = DEF), size = 5 ) + geom_segment( aes( x = 0, y = ID, xend =
2004 Nov 09
1
survSplit: further exploration and related topics
...in real life. This approach will also make it clearer what really is going on. The effect of each of the timescales can then be modelled using the usual regression tools available in R. David Clayton har written an R-function that does it correctly, you can find it in: http://biostat.ku.dk/~bxc/Lexis/ along with its .Rd file. It is also included a Lexis-package which is a first shot at an epidemiology package for R available at http://biostat.ku.dk/~bxc/SPE/library/, but built under 1.9. I recently tried to build it under 2.0, but it crashed for me and I was advised to wait till 2.1 before I...
2008 Jan 17
0
New version of Epi package out (1.0.7)
A new major upgrade of the Epi package for Epidemiological data analysis has been put on CRAN, it is now at version 1.0.7. It contains an entirely new way of representing follow-up data on multiple timescales and multiple states. See the function Lexis(). Plus a lot of other useful stuff for epidemiological analysis. See more on the package homepage, www.biostat.ku.dk/~bxc/Epi Note also that there will be a course 28 May - 2 June in Estonia, see www.biostat.ku.dk/~bxc/SPE. Bendix Carstensen Epi package maintainer _____________________________...
2004 Dec 22
0
ordering levels: I was wrong
I was wrong about needing the Relevel from the Lexis package. The default verson of relevel does the job of reshuffling levels in any desired order, albeit with a warning (which comes from the fact that apparently only a single number had been anticipated by the designer): > testf <- factor( sample( letters[1:4], 100, replace=T ) ) > tabl...
2010 Aug 28
1
star models
Hi, I am traying to implement an STAR model, but I have some problems. I am following the instruction of the model, that they are in: http://bm2.genes.nig.ac.jp/RGM2/R_current/library/tsDyn/man/star.html that they are from: http://bm2.genes.nig.ac.jp/RGM2/pkg.php?p=tsDyn The model is: star(x, m=2, noRegimes, d = 1, steps = d, series, rob = FALSE, mTh, thDelay, thVar, sig=0.05, trace=TRUE,
2004 Nov 30
3
About ROC curves
Hi, Dear all R users: Does someone know whether R can calculate the Receiver Operating Characteristic (ROC) Curves? I didn't find it from the packages. Thanks a lot. --- Xin
2010 Jul 22
1
Question regarding panel data diagnostic
Good day R-listers, I'm currently working on a panel data analysis (N=17, T=5), in order to check for the spurious regression problem, i have to ?test for stationarity but i've read somewhere ?that i needn't to test for it as ?my T<10 , what do you think? if yes ?is there any other test ?i have to ?perform in such case (a kind of cointegration test for small T?) Any hint would be
2006 Jan 13
0
removing folders doesn't always work
I've been running dovecot for a while now. I've got 1.0alpha5 running on a Slackware linux 10.2 system (i386). My system is using mbox format which means you can't have folders that contain both folders and messages. What I'm seeing is that removing folders doesn't always work. From what I can tell, it only affects folders that contain folders. Dovecot doesn't remove