[R] Residual plots and residual deviance in the SURVEY package when only 'working deviance' available

2016-08-09 Thread Marko Stojovic
ls through the residuals([svyglm object]) command, does anyone know of a good reference on how to effectively use pearson residuals for model diagnostics (on the basis that deviance ones are unavailable). Many thanks. Marko Stojovic MSc Applied Statistics student, Birkbeck College, London

Re: [R] integrate with vector arguments

2015-02-27 Thread marKo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Yes. That's it. Thanks, a lot, really. Marko On 02/27/2015 02:46 PM, David Winsemius wrote: > >> On Feb 27, 2015, at 4:49 AM, marKo wrote: >> > Gee. That simple. I knew that! Thanks a lot. Essentially, I needed >

Re: [R] integrate with vector arguments

2015-02-27 Thread marKo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Gee. That simple. I knew that! Thanks a lot. Essentially, I needed only the diagonal elements. Easily solved by: diag(outer( X=v1,Y=v2, FUN= fV) I am sure that there are simpler options, but that works like a charm. Thanks a lot. Cheers, Marko

[R] integrate with vector arguments

2015-02-26 Thread marKo
a result of wrong length Any help will be greatly appreciated. Thanks, Marko -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBAgAGBQJU72qnAAoJEJcj4KySkkQsLAkP/R7DvO0GiZDRrtHgDna/2xj+ XJd8G/gGfe029lVjg+3i6wfKfZ9CoRH+kHEVnT0/SRYcSAeRu3/fys11sjEgVGnl a/Go167YRYfDkP/OrY4jKtlULyS

Re: [R] predict.lm (Michael Haenlein)

2013-04-09 Thread marKo
ll (You just need to add the error). Hope it helps, Marko -- Marko Tonc(ic' Assistant Researcher University of Rijeka Faculty of Humanities and Social Sciences Department of Psychology Sveu?ilis(na Avenija 4, 51000 Rijeka, Croatia [[alternative HTML version deleted]] _

[R] "save scores" from sem

2013-03-18 Thread marKo
not be standardized. Hope it helps Regards, Marko -- Marko Tončić Assistant Researcher University of Rijeka Faculty of Humanities and Social Sciences Department of Psychology Sveučilišna Avenija 4, 51000 Rijeka, Croatia __ R-help@r-project.org maili

[R] GPIB-compatible instrument control with R

2013-01-11 Thread Marko Tadjer
Hello, Does an R package exist for communication with instruments using GPIB (IEEE 488) protocol? Something similar exists in python for control of instruments over GPIB, RS232, or USB buses (http://pyvisa.sourceforge.net/) Thanks, Marko __ R-help@r

[R] Mean and modelling values

2011-07-22 Thread Marko
8 0.5 ... 1951 1 11 1.3 -0,17 1951 1 22 2.1 Mean (Typ2 1951) I hope you can help me by solving this problem Best regards, Marko -- View this message in context: http://r.789695.n4.nabble.com/Mean-and-modelling-values-tp3686341p3686341.html Sent from

[R] Mean and Timeseries modelling

2011-07-22 Thread Marko
8 0.5 ... 1951 1 11 1.3 -0,17 1951 1 22 2.1 Mean (Typ2 1951) I hope you can help me by solving this problem Best regards, Marko -- View this message in context: http://r.789695.n4.nabble.com/Mean-and-Timeseries-modelling-tp3686326p3686326.html Sent f

[R] R-beta: adjusting y-axis scale with multiple lines in plot

2009-10-06 Thread Marko Lõoke
__ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.

Re: [R] Logistic regression problem

2008-09-30 Thread Milicic B. Marko
The only solution I can see is fitting all possib le 2 factor models enabling interactions and then assessing if interaction term is significant... any more ideas? Milicic B. Marko wrote: > > I have a huge data set with thousands of variable and one binary > variable. I know tha

[R] Constrained Optimized Binning Procedure....implementation help/idea needed.

2008-06-16 Thread Marko Milicic
Dear R Helpers, At the moment I'm working on the project to implement "optimal binning" function. It will be primarily used as a tool for logistic regression. something very similar to http://www2.sas.com/proceedings/forum2008/153-2008.pdf* *but applied in diferent problem space...* *The prob

Re: [R] Max consecutive increase in sequence

2008-05-13 Thread Marko Milicic
wrote: > Are you sure you gave us the right 'sq'? I don't understand what you want > if so. > > > How does 1 to 4 come from sq ? > > > Marko Milicic wrote: > > > Hi all R helpers, > > > > I'm trying to comeup with nice and elegant way of

[R] Max consecutive increase in sequence

2008-05-13 Thread Marko Milicic
Hi all R helpers, I'm trying to comeup with nice and elegant way of "detecting" consecutive increases/decreases in the sequence of numbers. I'm trying with combination of which() and diff() functions but unsuccesifuly. For example: sq <- c(1, 2, 3, 4, 4, 4, 5, 6, 5, 4, 3, 2, 1, 1, 1, 1, 1); I'd

[R] Stepwise logistic regression....take too long...

2008-04-20 Thread Marko Milicic
Dear R helpers, I'm trying to build logistic regression model large dataset 360 factors and 850 observations. All 360 factors are known to be good predictors of outcome variable but I have to find best model with maximum 10 factors. I tried to fit full model and use stepAIC function to get best mo

Re: [R] Loading only particular columns from csv file...

2008-01-17 Thread Marko Milicic
Thank you very much... That was helpful.. On Jan 15, 2008 12:58 AM, Charles C. Berry <[EMAIL PROTECTED]> wrote: > On Mon, 14 Jan 2008, Marko Milicic wrote: > > > Dear all, > > > > I'm trying to process HUGE datasets with R. It's very fast, but I would

[R] Loading only particular columns from csv file...

2008-01-14 Thread Marko Milicic
Dear all, I'm trying to process HUGE datasets with R. It's very fast, but I would like to optimize it a bit more, by focusing one one column at time. say file is 1GB big and has 100 columns. In order to prevent "out of memory" problems I need to load one column at the time the only

[R] Subsetting data frame problem....

2008-01-01 Thread Marko Milicic
Dear R users, I'm new but already fascinated R user so please forgive for my ignorance. I have the problem, I read most of help pages but couldn't find the solution. The problem follows I have large data set 10,000 rows and more than 100 columns... Say something like var1,var2,var2,var4.