[R] Problems in setting up in MARSS package

2013-08-29 Thread Nilesh Gupta
I am trying to model a state space process using the MARSS package. My model has two unobservable states and 5 observable time series along with external covariates in the observation process only. None of the coefficients in either of the two processes are time varying. After running my setup and

[R] white heteroskedasticity standard errors NLS

2013-04-05 Thread Nilesh Gupta
Hello Is there any function to calculate White's standard errors in R in an NLS regression. The sandwich and car package do it but they need an lm object to calculate the error's. Does anyone have idea how to do it for an NLS object ? Regards The woods are lovely, dark and deep But I have promise

Re: [R] windows to remote R(linux) via putty with X11 forwarding

2013-04-08 Thread Nilesh Gupta
On Sun, Apr 7, 2013 at 11:48 PM, S Ellison wrote: > Another software which can help you is TeamViewer. Install it on Linux as well as windows and you can connect effortlessly between the two The woods are lovely, dark and deep But I have promises to keep And miles before I go to sleep And miles

[R] Multiple Multivariate regression in R with 50 independent variables

2013-04-18 Thread Nilesh Gupta
Hello all Is there a method/package in R in which I can do regressions for more than 50 independent variables ? Regards The woods are lovely, dark and deep But I have promises to keep And miles before I go to sleep And miles before I go to sleep - [[alternative HTML version deleted]]

Re: [R] Multiple Multivariate regression in R with 50 independent variables

2013-04-19 Thread Nilesh Gupta
lm() does not accomodate more than 50 independent variables The woods are lovely, dark and deep But I have promises to keep And miles before I go to sleep And miles before I go to sleep - On Fri, Apr 19, 2013 at 12:26 PM, peter dalgaard wrote: > > On Apr 18, 2013, at 21:24 , Nilesh

Re: [R] Multiple Multivariate regression in R with 50 independent variables

2013-04-19 Thread Nilesh Gupta
Winsemius wrote: > > On Apr 19, 2013, at 12:40 AM, Nilesh Gupta wrote: > > > lm() does not accomodate more than 50 independent variables > > What is your source for this misinformation? > > > dat <- as.data.frame(matrix(rnorm(51000), ncol=51) ) > > names(dat) &

Re: [R] Multiple Multivariate regression in R with 50 independent variables

2013-04-19 Thread Nilesh Gupta
ultivariate? (Sorry, entering the thread late.) >> >> Of course, you need to first know what you are trying to do. Any tool is >> only so good as the workman handling it. >> >> Ranjan >> >> On Fri, 19 Apr 2013 17:21:39 +0530 Nilesh Gupta >> wrote: >>

Re: [R] Multiple Multivariate regression in R with 50 independent variables

2013-04-19 Thread Nilesh Gupta
.? Where am i going wrong ? The woods are lovely, dark and deep But I have promises to keep And miles before I go to sleep And miles before I go to sleep - On Fri, Apr 19, 2013 at 10:18 PM, David Winsemius wrote: > > On Apr 19, 2013, at 4:51 AM, Nilesh Gupta wrote: > > > I

Re: [R] Multiple Multivariate regression in R with 50 independent variables

2013-04-19 Thread Nilesh Gupta
handling it. > > Ranjan > > On Fri, 19 Apr 2013 17:21:39 +0530 Nilesh Gupta > wrote: > > > I used this link > > > http://r.789695.n4.nabble.com/model-frame-and-formula-mismatch-in-model-matrix-td4664093.html > > > > Regards > > > > The woods ar

Re: [R] Multiple Multivariate regression in R with 50 independentvariables

2013-04-20 Thread Nilesh Gupta
to go before I sleep - On Sat, Apr 20, 2013 at 1:41 AM, Daniel Nordlund wrote: > > -Original Message- > > From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] > > On Behalf Of Nilesh Gupta > > Sent: Friday, April 19, 2013 10:26 AM > > To: r

Re: [R] ARMA with other regressor variables

2013-05-02 Thread Nilesh Gupta
Check the package rugarch. It is capable of doing ARMA calculations with external regressors The woods are lovely, dark and deep But I have promises to keep And miles to go before I sleep And miles to go before I sleep - On Thu, May 2, 2013 at 3:45 PM, Preetam Pal wrote: > Hi, > > I want t

Re: [R] R unable to access internet to install packages

2013-05-08 Thread Nilesh Gupta
Alex For using a proxy server configuration with R please ensure that you use the internet2 ddl to connect to the internet. It can be set in an R session by using setInternet2(TRUE). Besides all of these you should really set up a new version of R. Regards The woods are lovely, dark and deep But

Re: [R] R unable to access internet to install packages

2013-05-08 Thread Nilesh Gupta
also try this command to set the proxy Sys.setenv(http_proxy="http://proxy_server_ip :port_for_proxy") The woods are lovely, dark and deep But I have promises to keep And miles to go before I sleep And miles to go before I sleep - On Thu, May 9, 2013 at 7:50 AM, Nilesh Gupta wrot