similar to: Odd "sweep" error on older code

Displaying 20 results from an estimated 100 matches similar to: "Odd "sweep" error on older code"

2008 Jun 04
0
Can icecast stream a file from disk?
I'll toss in here and augment with Wade's remarks. Absolutely this is not an optimal use of icecast but may actually result in reduced complexity for deployment for people who need to stream both dynamic and static content. For example, if we have a live streaming site but we want to put some sample static content in the profile of the band who will be streamed later - going ahead and
2010 Nov 16
1
POP users complaining about multiple copies of mail
Hello, We just switched from UW to Dovecot for our mail server. The transition went smoothly, except we have some users complaining about their email clients re-downloading mail or getting multiple copies of emails. When we go into their accounts, we only see one copy of the email, so I'm assuming there's something odd in the communication between their client and us that's causing
2006 Feb 01
2
Weird problem with script/server, lighttpd, and FreeBSD
I installed lighttpd from ports on my FreeBSD-5 system last night, wanting to play with that instead of WEBrick for development work. I installed it, and ran script/server, and got this: [minter@carlton discostu]$ script/server => Booting lighttpd (use ''script/server webrick'' to force WEBrick) => Rails application started on http://0.0.0.0:3000 => Call with -d to
2008 Jun 04
2
Can icecast stream a file from disk?
On Jun 4, 2008, at 5:25 AM, Thomas B. Ruecker wrote: > H. Wade Minter schrieb: >> I'm in a situation where I have some MP3 files I'd like to stream on- >> demand, but for various reasons can't just make the MP3 files >> themselves available. >> >> Is there a way, using icecast, to set up a server that would just >> bind >> to a port, and
1998 Apr 01
1
"User not authorized to connect from this station"
Hello, I'm running the newest version of Samba on an Irix 6.4 server. One of our NT clients is having a problem. When the user tries to access the server (Start-->Run-->"\\SERVER"), the username/password field comes up. When that user puts in his valid username/password, and error pops up that says "User not authorized to connect from this station." No valid
2013 May 02
1
Please check link for R-patched.tar.gz
I have been trying to build R-patched from source using the link ftp://ftp.stat.math.ethz.ch/Software/R/R-patched.tar.gz Which the file list says is linked to R-patched_2013-05-01.tar.gz but what I download by both wget and curl (with -R -O --ssl ) is dated 2013-04-23 and builds to an old patch level.... It could be some hidden cache on my side (I've tried finding and removing) but I think
2003 Aug 25
1
Resizing partitions using OCFS?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 We're getting ready to start work with Oracle 9iRAC on Red Hat Advanced Server 2.1. One thing I'm curious about, that I haven't found an answer for in the docs, is how to handle partition resizing with OCFS. We have found on our Oracle 8i/Solaris systems that we have the need on occasion to expand partitions to make room for more
2004 Jan 31
0
Undelivered Notification
A virus was detected in a message sent to: daniel.bull@minterellison.com With subject: MAIL DELIVERY SYSTEM This message has not been delivered and will be deleted by the Minter Ellison gateway. Please ensure the virus is removed from the attachment before resending the message. Details of the virus detected: Scenarios/Incoming/Sophos Anti-Virus: Information 0x42060008, W32/MyDoom-A
2006 Jul 02
11
Google maps api in ruby/rails
I''ve been looking for any modules/tools that are available for using the google maps api in rails. I found a couple of quick examples, but not much more. If anyone knows of good sites that cover using google maps api in rails please post it here:) Chris
2007 Jun 29
1
sweep sanity checking?
A friend of mine just got bitten by the fact that sweep() will happily sweep out a STATS vector of an arbitrary length -- even one whose length is not a divisor of any of the margins -- without complaining. I know the answer to this could be "well just don't do that", but it's easy to make a mistake in which margin you're sweeping ... What would R-core think of the
2005 May 09
0
Sweep statistics
Dear List: I am wondering if there is a more efficient way to compute the following. For the example I am using the star data frame in the mlmRev package. This has 80 schools and includes grades K, 1, 2, and 3. First I compute the grade level mean in each school using tapply as: tapply(star$math, list(star$sch,star$gr), mean, na.rm=T) This results in a table of means by school for each grade.
2009 Dec 16
1
difference between the meaning of MARGIN in sweep() and apply()
For example, subtracting 1:2 from the rows of a two-column matrix: > t(apply(matrix(1:6,ncol=2),MARGIN=1,function(y) y - 1:2)) [,1] [,2] [1,] 0 2 [2,] 1 3 [3,] 2 4 > sweep(matrix(1:6,ncol=2),MARGIN=2,1:2,FUN="-") [,1] [,2] [1,] 0 2 [2,] 1 3 [3,] 2 4 Is there a logic to this difference, or is it just a quirk of the history of these
2010 Jul 22
0
sweep / mapply question
Dear list, I have a matrix, spc, that should row-wise be interpolated: E.g. spc <- matrix (1:1e6, ncol = 250, nrow = 4000, byrow = TRUE) spc [1:10, 1:10] shifts <- seq_len (nrow (spc)) wl <- seq_len (ncol (spc)) interpolate <- function (spc.row, shift, wl) spline (wl + shift, spc.row, xout = wl, method = "natural")$y interpolate (spc [1,], shift = shifts [1], wl = wl)
2010 Aug 11
0
sweep and zoo objects
rc<-list(c( 123,321,234,543,654,768,986,987,246,284),c("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")) # the matrix has rownames that are used as identifiers and columns # of time. 1 years worth of data. Thats the native format
2010 Nov 29
2
R equivalent of Beaton's Sweep algorithm
I'm looking for an R equivalent of Beaton's (1964) Sweep algorithim for partial inversion of a matrix by pivoting. It implemented in SAS/IML as sweep(matrix, indices), described here http://support.sas.com/documentation/cdl/en/imlug/59656/HTML/default/langref_sect266.htm and here for python http://adorio-research.org/wordpress/?p=262 -- Michael Friendly Email: friendly AT yorku
2009 Mar 17
2
sweep?
I am having a hard time understanding just what 'sweep' does. The documentation states: Return an array obtained from an input array by sweeping out a summary statistic. So what does it mean "weeping out a summary statistic"? Thank you. Kevin
2010 Nov 18
3
sweep by levels of a factor
Hi, I'd appreciate help with this. I have a data matrix with one column, called f in the example below, a factor. I'd like to subtract the means from each of other columns for each level of the factor. That is, in the example, to go from the first matrix below to the second. I know SWEEP will take out means, but I want to do this for each level of the factor. f x 1 2 1
2004 Aug 06
0
please test rc2 support in sweep :)
Hi, I'm updating speex support in sweep to RC2 and I'd like some advice on encoder options, and would appreciate some testing of the user interface. a screenshot of the updated speex encoding dialog: http://www.vergenet.net/~conrad/tmp/sw_speexRC2_1.png you can grab a tarball of sweep for testing here: http://www.vergenet.net/~conrad/tmp/sweep-0.8.0-speexRC2.tar.gz general
2012 Aug 04
1
how to coerce the result of sweep to be an array if result of FUN is a string?
Hi, I would like to use sweep to "sweep out" proportions and confidence intervals for an array, however when I supply a function which returns a string (containing something like "9% (3-18%)") I get back a list instead of an array, here is a simplified example: # example showing that sweep does not return an array with same dimensions as STATS as advertised
2012 Dec 10
1
Sweep out control
Dear all, Assume that I have the following data structure: d <- expand.grid(subj=1:5, time=1:3, treatment=LETTERS[1:3]) d$value <- 10 ^ (as.numeric(d$treatment) + 1) + 10 * d$subj + d$time d$value2 <- 100000 + d$value where d$treatment == "C" stands for my control group. What I want to achieve now is to subtract the values corresponding to d$treatment == "C" from