search for: burgh

Displaying 9 results from an estimated 9 matches for "burgh".

Did you mean: burg
2018 May 22
0
Nelson-Aalen Estimator in R: Error Message
...d is to set options(error=recover) which will dump you into the browser() environment when the error occurs and you can oka around and see what the value of variables was at the point of the error. This could give you a clue about what is going on. -pd > On 22 May 2018, at 15:29 , A.C. van der Burgh <a.c.vanderburgh at erasmusmc.nl> wrote: > > Dear all, > > Currently, I am doing a research project about serum sodium levels and falling. I am doing my analysis in R. I am performing the multiple imputation right now. I want to perform a survival analysis later, but therefore I...
2018 May 22
2
Nelson-Aalen Estimator in R: Error Message
Dear all, Currently, I am doing a research project about serum sodium levels and falling. I am doing my analysis in R. I am performing the multiple imputation right now. I want to perform a survival analysis later, but therefore I need to specify the Nelson-Aalen estimator. My dataset is called DF1, the event indicator is Falls and the time variable is Time. The code that I use is as follows:
2018 May 23
2
Recoding variables in R
Hi all, I have a very general question and I think for you maybe very easy, but I am not able to solve it. I have a dataset and that dataset contains the variable Anxiolytics. This variable is coded as 0, 1, 2. The variable looks as follows: > summary(DF$Anxiolytics) 0 1 2 NA's 1102 0 20 440 You can see that the variable is coded as 0, 1, 2, but group 1
2003 Jun 05
1
Additions: Boot problem on a P4P800-based computer
Hi again, Anyone has an idea how to debug this problem? I tried nearly everything possible, including disabling devices in the BIOS and in CLI mode. I even replaced the CD-ROM drive with another one, just in case it is faulty. The problem persists... The thing that is hanging the probing session comes after PLIP. That's where the boot process always stops... Next thing is to remove the hard
2018 May 23
1
CKD-Epi formula
Hi all, I have a question and I do not know If I am at the right place to ask this question. But is there someone that has the formula of CKD-Epi in code in R? I have tried a lot of loops, but none of the approaches give me the right answer. Is there someone who has this formula coded? Thank you! [[alternative HTML version deleted]]
2018 May 23
0
Recoding variables in R
Thank you all for your help, it worked! Op 23 mei 2018 om 19:27 heeft marta azores <martazores at gmail.com<mailto:martazores at gmail.com>> het volgende geschreven: Try that code NewDF<-DF[!DF$Anxiolytics==1,] 2018-05-23 10:14 GMT+00:00 Lisa van der Burgh <lisavdburgh at hotmail.com<mailto:lisavdburgh at hotmail.com>>: Hi all, I have a very general question and I think for you maybe very easy, but I am not able to solve it. I have a dataset and that dataset contains the variable Anxiolytics. This variable is coded as 0, 1, 2. The vari...
2003 Jul 28
3
Large hard disk support in FreeBSD
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I'd like to put a 60GB hard disk into Gateway 2000 Pentium 150 (from '96 or '97 or so I think) running FreeBSD 4.8 RELEASE. Can anybody tell me how successful this is likely to be? Will I be able to use the full capacity of the drive? I seem to recall that the trick with large hard disks and old BIOSes is to disable the drive in
2003 Jul 27
2
SMP Problems with 4.8-RELEASE
Hello, I have the following hardware configuration. Tyan 2466N motherboard, 1.03 BIOS, 2 Athlon-MP 1800+ CPUs, 512MB registered ECC DRAM, Onboard 3Com NIC (xl type) Radeon 8500 AGP video card Adaptec 3210S SCSI RAID controller Comtrol RocketPort 8 port PCI serial card I have started to experience some odd system lockups in the past couple months, and it seems to be getting worse. I particular,
2018 May 23
0
MICE passive imputation formula
Hi all, I have a question about multiple imputation within the MICE package. I want to use passive imputation for my variable called X, because it is calculated out of multiple variables, namely Y, Z. Let's give an example with BMI. I know, that if I want to use passive imputation for BMI, I can use the following command: meth["BMI"] <- "~I(weight/(height/100)^2)"