Displaying 20 results from an estimated 10000 matches similar to: "Problem with exclusion pattern"
2005 Apr 10
1
Problem with HTB Installation
Hello Everybody,
I am trying to install thz HTB queue on my Debian Woody. I compiled a
2.6.9 Kernel with the good configuration for HTB.
The kernel is booting correctly but I can''t use HTB queue with tc.
I have this error message.
gatekeeper:~# tc qdisc add dev eth0 root handle 1: htb default 90
RTNETLINK answers: Invalid argument
I have check my logs and found this message :
Apr 10
2005 Aug 01
2
How to preserve ownership with rsync over SSH
Hello everybody,
I am discovering rsync and I have a problem about preserving ownership
and permissions. I want to mirror a web tree with rsync over ssh. I set
up a module on my rsync server and on the rsync client, I use the
options -o and -p in order to preserve ownership et permissions. The
file are transffered via rsync but on the rsync server the files are
owned by the user used to connect
2006 Jan 28
4
Unspecified error in prototype.js
Hi,
1. I have 2 panes, each having approximately 45-50 slides, all the
slide images are 110x82 pixels in size, enclosed in their respective div''s.
2. These divs are further enclosed in a parent div, which is defined as
a Sortable on page load.
3. There is a destination div on the RHS also.
Sortable.create("div_leftDiv", {ghosting:true, revert: true,
dropOnEmpty:true,
2005 Apr 05
1
exclusion rules for propensity score matchng (pattern rec)
Dear R-list,
i have 6 different sets of samples. Each sample has about 5000 observations,
with each observation comprised of 150 baseline covariates (X), 125 of which
are dichotomous. Roughly 20% of the observations in each sample are "treatment"
and the rest are "control" units.
i am doing propensity score matching, i have already estimated propensity
scores(predicted
2006 Feb 01
2
IE memory fix leak.
By default the prototype.js gives us the function
/* prevent memory leaks in IE */
Event.observe(window, ''unload'', Event.unloadCache, false);
But there is no unload event in out application as the content of the div
keeps changing using the Ajax.Updater function. To handle such a scenario,
we''ve added the following lines of code to prototype.js
/* prevent
2007 Nov 01
2
ploting a comparison of two scores, including the labels in the plot
Hello r-help!
I have data with two kind of ratings on status of 100 occupations. The
first kind of rating is on the percieved "objective" status that these
occupations have in society at large, and the second kind or rating is
on the status that the respondents think that these occuption *should*
have.
The ratings were originally integer values in the rage 1-9, but in the
current data,
2010 Sep 30
7
how to make list() return a list of *named* elements
If I combine elements into a list
b <- c(22.4, 12.2, 10.9, 8.5, 9.2)
my.c <- sample.int(round(2*mean(b)), 5)
my.list <- list(b, my.c)
the names of the elements seems to get lost in the process:
> str(my.list)
List of 2
$ : num [1:5] 22.4 12.2 10.9 8.5 9.2
$ : int [1:5] 11 8 6 9 20
If I explicitly name the elements at list-creation, I get what I want:
my.list <- list(b=b,
2003 Nov 10
10
shuffling a vector
Hi,
I'me trying to write a function that will shuffle a vector. At the
moment I'm baically making a vector of randomized indices and then
making a new vector from the original one using these random indices.
However, is there an alternative (more elegant) method to do this? I
tried help.search('shuffle') but it does'nt return anything relevant.
Thanks,
2023 Feb 23
1
Undocumented change of dirname("C:/") on R-devel on Windows
Hi,
I found dirname() behaves differently on R-devel on Windows. Since I'm not
sure which behavior is right, let me ask here before filing this to R's
Bigzilla.
On R 4.2.2., we get
> dirname("C:/")
[1] "C:/"
However, on R-devel (r83888), we get
> dirname("C:/")
[1] "."
?dirname says 'dirname returns the part of the
2001 Mar 21
2
RPackage
Please, is there anyone who can give me some suggestions?
(1) I have to use a package from R on my work. The package is the
"quantreg" developed by Koenker (Uni Illinois). I have installed the
package in the R library tree /usr/local/lib/R/ library of my Linux
Operating System. I did R CMD INSTALL -l /usr/local/lib/R/ library
/path/to/quantreg_x.y-z.tar.gz. However, when I call any
2004 Aug 06
6
icecast to rebound streaming radio
My name is Stuardo, from Guatemala and i have this problem: We want to stream
a local radio, but the bandwidth here in Guatemala is no so cheam ass in USA,
so we have a server in USA.
What we want to do is this: to stream the local radio from Guatemala to USA,
this means that the local machine will only have 1 client. Then we want that
the server in USA "rebounds" what it recives
2003 Nov 21
3
speeding up a pairwise correlation calculation
Hi,
I have a data.frame with 294 columns and 211 rows. I am calculating
correlations between all pairs of columns (excluding column 1) and based
on these correlation values I delete one column from any pair that shows
a R^2 greater than a cuttoff value. (Rather than directly delete the
column all I do is store the column number, and do the deletion later)
The code I am using is:
ndesc
2011 Dec 19
2
[LLVMdev] DwarfDebug craziness
>From DwarfDebug.cpp:
>/// GetOrCreateSourceID - Look up the source id with the given directory and
>/// source file names. If none currently exists, create a new id and insert it
>/// in the SourceIds map. This can update DirectoryNames and SourceFileNames
>/// maps as well.
>unsigned DwarfDebug::GetOrCreateSourceID(StringRef FileName,
>
2003 Nov 10
5
attaching data to any object
Hi,
is the following possible - in a given session I make a lot of objects
and save when exiting. Usually I note down seperately what each object
is about. Is it possible to attach data to any object which would
essentially be a short note explaining the meaning of it?
Thanks,
-------------------------------------------------------------------
Rajarshi Guha <rxg218 at psu.edu>
2023 Feb 23
1
Undocumented change of dirname("C:/") on R-devel on Windows
On 2/23/23 03:27, Hiroaki Yutani wrote:
> Hi,
>
> I found dirname() behaves differently on R-devel on Windows. Since I'm not
> sure which behavior is right, let me ask here before filing this to R's
> Bigzilla.
>
> On R 4.2.2., we get
>
> > dirname("C:/")
> [1] "C:/"
>
> However, on R-devel (r83888), we get
>
>
2005 May 26
5
a more elegant approach to getting the majority level
Hi, I have a factor and I would like to find the most frequent level.
I think my current approach is a bit long winded and I was wondering if
there was a more elegant way to do it:
x <- factor(sample(1:0, 5,replace=TRUE))
levels(x)[ which( as.logical((table(x) == max(table(x)))) == TRUE ) ]
(The length of x will always be an odd number, so I wont get a tie in
max())
Thanks,
2023 Feb 23
1
Undocumented change of dirname("C:/") on R-devel on Windows
Thanks for the prompt response, I'll confirm it after the new R-devel
binary is available.
Also, thanks for the detailed explanation. I agree with you in general.
> "/" in "C:/" is a path separator or not, and whether it is trailing or not
It seems a Windows' path basically consists of two components; a drive
specification (e.g., C:) and the directory structure
2005 Nov 22
4
the matrix of rows with specific row sums
I am just starting with R and have the following problem: given a matrix
of ones and zeroes, say
mdim=4
m<-matrix(round(runif(mdim^mdim)),mdim,mdim)
how to construct the matrix of those rows of m, whose elements sum to 2.
Contrary to the random matrix above, the actual matrix always has at
least one such row.
Serguei Kaniovski
2008 Jan 14
2
DO NOT REPLY [Bug 5199] New: Exclusion of source arg ancestor short-circuits recursion
https://bugzilla.samba.org/show_bug.cgi?id=5199
Summary: Exclusion of source arg ancestor short-circuits
recursion
Product: rsync
Version: 3.0.0
Platform: Other
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
2010 Oct 24
0
[ wxruby-Bugs-28669 ] INSTALL file states incorrect use of class exclusion
Bugs item #28669, was opened at 2010-10-24 19:02
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=218&aid=28669&group_id=35
Category: Incorrect or missing docs
Group: None
Status: Open
Resolution: None
Priority: 3
Submitted By: Marvin G?lker (mguelker)
Assigned to: Alex Fenton (brokentoy)
Summary: INSTALL file states incorrect use of class exclusion