Re: [R] dput sparseMatrix list

2016-01-04 Thread David Winsemius
> On Jan 4, 2016, at 11:17 PM, Lietz, Haiko wrote: > > hi all, > > when dputting a list of sparse matrices (Matrix package), the output does not > contain the data but the information that the list contains sparse matrices. > > M <- sparseMatrix(i = c(2, 1), j = c(1, 2), x = c(1, 1)) > > dpu

[R] dput sparseMatrix list

2016-01-04 Thread Lietz, Haiko
hi all, when dputting a list of sparse matrices (Matrix package), the output does not contain the data but the information that the list contains sparse matrices. M <- sparseMatrix(i = c(2, 1), j = c(1, 2), x = c(1, 1)) dput(M) ... works. dput(list(M, M)) ... does not work. how can I dput a l

[R] rZeppelin: Easy Spark for R Data Scientists

2016-01-04 Thread Amos B. Elberg
rZeppelin is an R Interpreter for the Apache (Incubating) Zeppelin project.   The intention of rZeppelin is to make it possible for regular R-using non-programmer to integrate the power of Spark, and the wide range of ML packages available for Python and scala, into their day-to-day toolbox — w

Re: [R] R package built using newer version of R

2016-01-04 Thread Duncan Murdoch
On 04/01/2016 2:02 PM, Tyler Auerbeck wrote: We're currently looking at using the R eclipse plugin StatET as our development environment. Due to certain requirements, we're still using 2.15.1. However a required package of StatET was built using 2.15.3, which results in the following warning: Wa

[R] R package built using newer version of R

2016-01-04 Thread Tyler Auerbeck
We're currently looking at using the R eclipse plugin StatET as our development environment. Due to certain requirements, we're still using 2.15.1. However a required package of StatET was built using 2.15.3, which results in the following warning: Warning message: package 'rj' was built under R v

Re: [R] problem in installing package xpose4 in Rstudio

2016-01-04 Thread David Winsemius
> On Jan 3, 2016, at 11:19 PM, swati j wrote: > > With R, package xpose4 is working well, but when I open Rstudio and try to > install package xpose4 > > following error message is displayed > >> install.packages("C:/Users/om/Downloads/xpose4_4.5.3.tar.gz", repos = >> NULL, type = "source") >

[R] problem in installing package xpose4 in Rstudio

2016-01-04 Thread swati j
With R, package xpose4 is working well, but when I open Rstudio and try to install package xpose4 following error message is displayed > install.packages("C:/Users/om/Downloads/xpose4_4.5.3.tar.gz", repos = > NULL, type = "source") Installing package(s) into ‘C:/Users/om/Documents/R/win-library/2

Re: [R] Better scrolling feature in ggplot using Shiny???

2016-01-04 Thread Jeff Newmiller
Server-side rendering of large amounts of data is often criticized this way. In general, the answer lies in client-side rendering, which these days usually means serving a Web page with embedded data and Javascript (e.g. D3), not ggplot images. The drawback seems to be a significant amount of e

Re: [R] Estimating MA parameters through arima or through package "dlm"

2016-01-04 Thread Mark Leeds
Hi: I don't have time to look at the details of what you're doing but the "equivalence" between state space and arima ( as paul gilbert pointed out a few weeks ago ) is not a true equivalence. if you are in an area of the parameter space that the state space formulation can't reach, then you won

[R] Estimating MA parameters through arima or through package "dlm"

2016-01-04 Thread Stefano Sofia
Dear list users, I want to use apply a MA(2) process (x=beta1*epsilon_(t-1) + beta2*epsilon_(t-1) + epsilon_(t)) to a given time series (x), and I want to estimate the two parameters beta1, beta2 and the variance of the random variable epsilon_(t). If I use MA2_1 <- Arima(x, order=c(0,0,2)) I g

[R] Better scrolling feature in ggplot using Shiny???

2016-01-04 Thread Kunal Shah
Hello, I have plotted a ggplot of large data around 3 points. I opened it in Shiny. I want a scrolling feature so that I can just scroll the data. I tried to write a code in Shiny where the user can select the slider range. But "scrolling" by that is not efficient and not at all smooth Any h