similar to: NA-handling in glm.fit?

Displaying 20 results from an estimated 300 matches similar to: "NA-handling in glm.fit?"

2006 Apr 10
0
Handling of NA ´s in the matrix multiplication function
Hi! Is there a way of handling NA?s in the matrix multiplication function '%*%'? I cant find anything concerning this in the help files. I?m thinking of some sort of setting such as na.rm=T. Thanks before hand to anyone how can help me! Fredrik Thuring, Junior Business Researcher __________________________________ Codan Forsikring, Gammel Kongevej 60, DK-1790 Copenhagen V tel: +45 33 55
2004 Feb 12
4
R-help
Hi, I have a problem. I would like to put my SAS-code into R. Could I do that, if yes, how? Best regards Jim Gustafsson _______________________________________________________________________________ Codan Insurance, Gammel Kongevej 60, DK-1790 Copenhagen V telephone: +45 33 55 55 55, fax: +45 33 55 21 22 e-mail: jgu@codan.dk http://www.codan.dk [[alternative HTML version deleted]]
2005 Aug 12
1
Concerning reading of SAS-files
Hi! I'm trying to start a credibility estimation study with a coule of data sets that are created for SAS. The data sets are saved as ".sas7bndx" and ".sas7bdat". I've tried reading them to R with the function 'read.xport' but this returns the error message 'Error in lookup.xport(file) : unable to open file'. Are there any other functions that one
2005 Jun 24
3
Counterpart for Matlab's 'feval'?
Hi! I've just begun writing a program that searches for the minimum of a function with golden section search. In order to do this in a nice way I need a function that takes a function name and an argument and returns the function value for that argument, i .e just like Matlab's 'feval'. Is there any? Thanks before hand! Best regards, Fredrik Thuring, Codan Insurance A/S
2005 Aug 19
3
Handling of tables in R
Hi! I have a few questions concerning reading of tables from R to other programs. My main question is if it’s even possible to read a table created in R (with the functions data.frame and save) to Excel (or maybe SAS) and if so how does one do this? If I just mark the table in R and copy-paste to Excel the whole table ends up in one single cell, (of course). My goal is to
2005 Jun 08
2
Solve f(x) = 0
Hi! I´m need a function that solves the equation f(x) = 0 (i.e. the root of the function) when f is a nonlinear function. Is there any? I´ve tried nlm and optim on the square of the function but the solution is very unstable. Thanks before hand. / Fredrik Thuring ------------------------------------------------------------------------------ This e-mail and any attachment may be confidential
2003 Mar 07
0
Vedr.: Re: Migration from WindowsNT to Samba
I was thinking of using rsync, since it has the ability of mapping the written user-name instead of using UID's. Anyone know how this work on WindowsNT? I've read, that CygWin hasn't the ACL's properly implemented yet? Does another "cross-platform" exist, that can map between the written usernames? Jacob ps. I've tried using scopy, but it fails : "Acces
2006 Jun 12
2
Ruby on Rails Copenhagen Meetup
Hi Railers If you are in the Copenhagen area on the 29th of this month (that''s a Thursday) Jesper and I would be glad to see you at Caf? Selina in the central Copenhagen for the first of many Ruby on Rails meetups. We start at 20:30 hours and have of cause arranged for free beer and complementary WiFi. Our goal is to create an inspiring atmosphere where railers (new and old) can
2007 Feb 13
1
nls: "missing value or an infinity" (Error in numericDeriv) and "singular gradient matrix"Error in nlsModel
Hi, I am a non-expert user of R. I am essaying the fit of two different functions to my data, but I receive two different error messages. I suppose I have two different problems here... But, of which nature? In the first instance I did try with some different starting values for the parameters, but without success. If anyone could suggest a sensible way to proceed to solve these I would be
2015 Jan 02
0
Problem with ups-dummy driver (repeater mode)
On Jan 1, 2015, at 4:57 PM, Jonathan Gammell <jon.gammell at utoronto.ca> wrote: > [ups] > driver = dummy-ups > port = eaton1 > desc = "Dummy UPS" There is a typo in the specification of "port =" in the dummy-ups man page, but your configuration file is effectively looking for a simulation file named 'eaton1'. The presence of
2015 Jan 02
2
Problem with ups-dummy driver (repeater mode)
On Jan 1, 2015, at 8:23 PM, Charles Lepple <clepple at gmail.com> wrote: > On Jan 1, 2015, at 4:57 PM, Jonathan Gammell <jon.gammell at utoronto.ca> wrote: > >> [ups] >> driver = dummy-ups >> port = eaton1 >> desc = "Dummy UPS" > > There is a typo in the specification of "port =" in the dummy-ups man page,
2015 Jan 03
0
Problem with ups-dummy driver (repeater mode)
On 15-01-01 08:57 PM, Charles Lepple wrote: > On Jan 1, 2015, at 8:23 PM, Charles Lepple <clepple at gmail.com> wrote: > >> On Jan 1, 2015, at 4:57 PM, Jonathan Gammell <jon.gammell at utoronto.ca> wrote: >> >>> [ups] >>> driver = dummy-ups >>> port = eaton1 >>> desc = "Dummy UPS" >> >>
2013 Mar 25
1
[LLVMdev] Types in TableGen instruction selection patterns
Sebastian Pop wrote: > same mechanism could be useful. It would be nice to be able to write this: > > def insn : Inst<(outs i32:$dst), (ins i32:$src1, i32:$src2), > "some assembler", > [(set $dst, (Op $src1, $src2))]>; >From the PPC changes, I see that this is already possible under a slightly different form: def FSUBS :
2015 Jan 03
1
Problem with ups-dummy driver (repeater mode)
On Jan 2, 2015, at 8:15 PM, Jonathan Gammell <jon.gammell at utoronto.ca> wrote: > > Thanks Charles, > > You're right that it should be "eaton1 at localhost". That was actually just a one-off mistake in making a simple example to post. The errors are the same even with the correct "@localhost". I will look into whether there's a backport to 12.04, as
2009 Jun 17
2
[LLVMdev] possible PowerPC (32bits) backend bug
I have been doing some playing with the patterns that define complex instructions, and I saw a behavior that doesn't look right. I think its a bug in the PPC backend. The 32-bit PPC .td file defines a pattern for the fnmsubs instruction like this: def : Pat<(fsub F4RC:$B, (fmul F4RC:$A, F4RC:$C)), (FNMSUBS F4RC:$A, F4RC:$C, F4RC:$B)>,
2004 Aug 25
6
R-help
Dear R users, I have just start working with R and would need some help. If you have a matrix as: [,1] [,2] [,3] [1,] 11 24 11 [2,] 16 29 16 [3,] 2 15 2 and you want the position where you can find the maximum value, in this case row 2 and column 2. How could you get the position? The values in the matrix is likelihood function values, and each row and
2003 Mar 06
2
Migration from WindowsNT to Samba
Hi I am about to migrate our corporate network from NT to Samba and Linux. But I have stumbled upon a problem : How do I transfer the files from NT to Samba and preserve the ownership? The users will be using the same usernames as before. Are there a script or program, that can transfer these rights? Or is it the hard way? 20Gb of data, nearly 100000 files. Regards Jacob
2005 Feb 16
4
(no subject)
R-people I wonder if one could change a list of table with number of the form 1,200.44 , to 1200.44 Regards JG ------------------------------------------------------------------------------ This e-mail and any attachment may be confidential and may also be privileged. If you are not the intended recipient, please notify us immediately and then delete this e-mail and any attachment without
2011 Nov 10
1
assistance building R on RHEL5
I have gotten this error while attempting to build R-2.13.2 and R-2.14.0 using ./configure --with-x=no --enable-R-shlib, and ./configure --with-x=no Red Hat Enterprise Linux Server release 5.6 (Tikanga) ========================= Warning in solve.default(rgb) : unable to load shared object '/users/home/mked/R-2.13.2/modules//lapack.so': /users/home/mked/R-2.13.2/lib/libRlapack.so:
2009 Jul 15
1
Error in simulation R-code
Dear List, I have got error message when I run the R-code. Can anyone has a suggestion? v.code <- df.bm7[,c(10:31)]; v.code[1:3,] names(v.code) CM = v.code # variable binomial code sim.sp <- function(data,CM,n,N) { C <- matrix(rep(NA,N),ncol=1) for(i in 1:N) { j <- n xx <- which(colSums(CM[j,])==1) V <- names(xx) V <- paste(V,