search for: mdowl

Displaying 20 results from an estimated 59 matches for "mdowl".

Did you mean: mdowle
2009 Aug 27
1
[Fwd: Re: Video demo of using svSocket with data.table]
...it could interest people following this thread. Clearly, RServe and svSocket have different goals and very little overlap. Best, Philippe -------- Original Message -------- Subject: Re: Video demo of using svSocket with data.table Date: Wed, 26 Aug 2009 20:34:19 +0100 From: Matthew Dowle <mdowle at mdowle.plus.com> Reply-To: Matthew Dowle <mdowle at mdowle.plus.com> To: Philippe Grosjean <phgrosjean at sciviews.org>, Romain Francois <romain.francois at dbmail.com> References: <h6kcod$5ed$1 at ger.gmane.org> <4A8E632D.6060504 at sciviews.org><4A8E6AF1....
2019 Feb 18
2
Error in rbind(info, getNamespaceInfo(env, "S3methods"))
...to date according to update.packages(). The error is : ** byte-compile and prepare package for lazy loading Error in rbind(info, getNamespaceInfo(env, "S3methods")) : number of columns of matrices must match (see arg 2) ERROR: lazy loading failed for package ?staRdom? * removing ?/home/mdowle/build/revdeplib/staRdom? This package (staRdom) has had a recent update but CRAN checks page is showing OK, mostly: https://cran.r-project.org/web/checks/check_results_staRdom.html. The two errors there don't seem to be related. The package installs no problem when I don't include my r...
2009 Apr 21
1
Closed-source non-free ParallelR ?
...nly when bundled with their R Enterprise edition. As such it appears to be non-free and closed source. http://www.revolution-computing.com/products/parallel-r.php Since R is GPL and not LGPL, is this a breach of the GPL ? Below is the "GPL and ParallelR" thread from their R forum. mdowle > It appears that ParallelR (packages foreach and iterators) is only available bundled with the Enterprise edition. Since R is GPL, and ParallelR is derived from R, should ParallelR not also be GPL? Regards, Matthew revolution > Hello Matthew, ParallelR consists of both proprietary and G...
2014 Sep 26
1
configure: error: linking to Fortran libraries from C fails
...ointer -O0 -g -Wall -pedantic -mtune=native" --without-recommended-packages --enable-strict-barrier --disable-byte-compiled-packages This runs for a while and then returns the following error : checking for dummy main to link with Fortran 77 libraries... unknown configure: error: in `/home/mdowle/R/Rtrunk': configure: error: linking to Fortran libraries from C fails See `config.log' for more details Looking in config.log there are a lot of errors but I believe that's the way it works as it tests what is available on the system. If I change "gcc-4.9" to "gcc&q...
2019 Feb 18
0
Error in rbind(info, getNamespaceInfo(env, "S3methods"))
...(). > > The error is : > ** byte-compile and prepare package for lazy loading > Error in rbind(info, getNamespaceInfo(env, "S3methods")) : > number of columns of matrices must match (see arg 2) > ERROR: lazy loading failed for package ?staRdom? > * removing ?/home/mdowle/build/revdeplib/staRdom? > > This package (staRdom) has had a recent update but CRAN checks page is > showing OK, mostly: > https://cran.r-project.org/web/checks/check_results_staRdom.html. The two > errors there don't seem to be related. > > The package installs no pr...
2005 Dec 09
3
[R] data.frame() size
...'dimnames' given for data frame -----Original Message----- From: pd at pubhealth.ku.dk [mailto:pd at pubhealth.ku.dk] On Behalf Of Peter Dalgaard Sent: 08 December 2005 18:57 To: Matthew Dowle Cc: 'r-help at stat.math.ethz.ch' Subject: Re: [R] data.frame() size Matthew Dowle <mdowle at concordiafunds.com> writes: > Hi, > > In the example below why is d 10 times bigger than m, according to > object.size ? It also takes around 10 times as long to create, which > fits with object.size() being truthful. gcinfo(TRUE) also indicates a > great deal more gar...
2006 Mar 02
5
Deparsing '...'
Hi, The following function works, but is there a neater way to write it? f = function(x,...) { # return a character vector of the arguments passed in after 'x' gsub(" ","",unlist(strsplit(deparse(substitute(list(...))),"[(,)]")))[-1] } > f(x,a,b,c*d) [1] "a" "b" "c*d" > Thanks. [[alternative HTML
2010 Aug 09
2
coef(summary) and plyr
Dear all, I?m having trouble getting a list of regression variables back into a dataframe. mydf <- data.frame(x1=rnorm(100), x2=rnorm(100), x3=rnorm(100)) mydf$fac<-factor(sample((0:2),replace=T,100)) mydf$y<- mydf$x1+0.01+mydf$x2*3-mydf$x3*19+rnorm(100) dlply(mydf,.(fac),function(df) lm(y~x1+x2+x3,data=df))->dl here I?d like to use ldply(dl,coef(summary)) or something
2004 Nov 26
2
Tcl error - brace in argument?
Hi all, Does anyone know a solution for this error ? > tkwidget(dlg, "iwidgets::spinint", range="{0 23}") Error in structure(.External("dotTclObjv", objv, PACKAGE = "tcltk"), class = "tclObj") : [tcl] wrong # args: should be ".31.1.19 configure -range {begin end}". Thanks, Matthew [[alternative HTML version
2010 Mar 05
1
Suggestion to add crantastic to resources section on posting guide
Under the "further resources" section I'd like to suggest the following addition : * http://crantastic.org/ lists popular packages according to other users votes. Consider briefly reviewing the top 30 packages before posting to r-help since someone may have already released a package that solves your problem. Thats just a straw man idea so I hope there will be answer, or
2012 Jan 17
1
names<- appears to copy 3 times?
Hi, $ R --vanilla R version 2.14.1 (2011-12-22) Platform: i686-pc-linux-gnu (32-bit) > DF = data.frame(a=1:3,b=4:6) > DF a b 1 1 4 2 2 5 3 3 6 > tracemem(DF) [1] "<0x8898098>" > names(DF)[2]="B" tracemem[0x8898098 -> 0x8763e18]: tracemem[0x8763e18 -> 0x8766be8]: tracemem[0x8766be8 -> 0x8766b68]: > DF a B 1 1 4 2 2 5 3 3 6 > Are those 3
2012 Feb 27
1
Identical copy of base function
Hello, Regarding this in R-devel/NEWS/New features : o ?library(pkg)? no longer warns about a conflict with a function from ?package:base? if the function is an identical copy of the base one but with a different environment. Why would one want an identical copy in a different environment? I'm thinking I may be missing out on a trick here. Matthew
2013 Apr 21
1
cedta decided 'igraph' wasn't data.table aware
Hi, what does this mean? --8<---------------cut here---------------start------------->8--- > graph <- graph.data.frame(merged[!v,], vertices=ve, directed=FALSE) cedta decided 'igraph' wasn't data.table aware cedta decided 'igraph' wasn't data.table aware cedta decided 'igraph' wasn't data.table aware cedta decided 'igraph' wasn't
2014 Sep 27
0
possible error in rdevel with --enable-strict-barrier?
...-std=gnu99 -fsanitize=address" CFLAGS="-fno-omit-frame-pointer -O0 -g -Wall -pedantic -mtune=native" --without-recommended-packages --enable-strict-barrier ~/R/Rtrunk $ make clean ~/R/Rtrunk $ make ... snip ... building package 'datasets' make[4]: Entering directory `/home/mdowle/R/Rtrunk/src/library/datasets' make[4]: Leaving directory `/home/mdowle/R/Rtrunk/src/library/datasets' Error in stats::ts(t(matrix(data = c(1628.75, 1678.1, 1772.8, 2443.6, : invalid time series parameters specified Calls: <Anonymous> ... <Anonymous> -> sys.source ->...
2010 Feb 22
1
shash in unique.c
Looking at shash in unique.c, from R-2.10.1 I'm wondering if it makes sense to hash the pointer itself rather than the string it points to? In other words could the SEXP pointer be cast to unsigned int and the usual scatter be called on that as if it were integer? shash would look like a slightly modified version of ihash like this : static int shash(SEXP x, int indx, HashData *d) {
2005 Dec 08
2
data.frame() size
Hi, In the example below why is d 10 times bigger than m, according to object.size ? It also takes around 10 times as long to create, which fits with object.size() being truthful. gcinfo(TRUE) also indicates a great deal more garbage collector activity caused by data.frame() than matrix(). $ R --vanilla .... > nr = 1000000 > system.time(m<<-matrix(integer(1), nrow=nr, ncol=2)) [1]
2011 Apr 26
1
help.request() for packages?
Hi, Have I missed something, or misunderstood? The r-help posting guide asks users to contact the package maintainer : "If the question relates to a contributed package, e.g., one downloaded from CRAN, try contacting the package maintainer first. [snip] ONLY [only is bold font] send such questions to R-help or R-devel if you get no reply or need further assistance. This applies to both
2012 Mar 14
3
merge bug fix in R 2.15.0
Is it intended that the first suffix can no longer be blank? Seems to be caused by a bug fix to merge in R 2.15.0. $Rdevel --vanilla DF1 = data.frame(a=1:3,b=4:6) DF2 = data.frame(a=1:3,b=7:9) merge(DF1,DF2,by="a",suffixes=c("",".1")) Error in merge.data.frame(DF1, DF2, by = "a", suffixes = c("", ".1")) : there is already a column
2011 Apr 07
5
R licence
Hi, is it possible to use some statistic computing by R in proprietary software? Our software is written in c#, and we intend to use http://rdotnet.codeplex.com/ to get R work there. Especially we want to use loess function. Thanks, Best regards, Stanislav [[alternative HTML version deleted]]
2006 May 23
4
Avoiding a memory copy by [[
Hi, n = 10000000 L = list(a=integer(n), b=integer(n)) L[[2]][1:10] gives me the first 10 items of the 2nd vector in the list L. It works fine. However it appears to copy the entire L[[2]] vector in memory first, before subsetting it. It seems reasonable that "[[" can't know that all that is to be done is to do [1:10] on the result and therefore a copy in memory of the entire