Displaying 20 results from an estimated 6000 matches similar to: "Histogram and moving average"
2004 Jul 28
3
where is "average shifted histogram"?
Hello!
In the book Modern Applied Statistics with S (4th ed),
section 5.6 the concept of the "average shifted
histogram" or ASH is mentionend. Also it is mentioned
in the same section "The code used is in the scripts
for this chapter" (from figure caption 5.8, analysis
of the geyser duration data).
*However*, I have trouble finding the code for that
function! Admittedly, I am a
2003 Nov 25
0
samba on macintosh
Hi all. New to this list so ... sorry if this is old, but I have searched
honest.
I have been asked to install samba on some (60) macintoshes. The macs run
OSX10.2. I have the developer tools and samba 3.0.0. Configure works but
make crashes out with libsmb/clikrb5.c139: #error
UNKNOWN_GET_ENCTYPES_FUNCTIONS followed by 4 more errors ((caused by the
first?).
I cant see any ref to this or options
2011 Jan 13
3
Question about histogram
Dear list,
I'm new to R, please bear with my silly questions. I'm trying to get an
understanding of why the results I get from a call to hist() are not as
I thought I would get. When I use the parameter freq=FALSE, I think the
plot will contain bars that none of them is larger than 1, because
they're probabilities. But for my code, the bars exceeded 1.
The actual data seems
2002 Apr 03
4
RE:How to decide mode and journal size?
Hi.
I am using a large storage which is ext2 file system of 1T byte.
It has many file types, doc, mail data, zip, etc. It doesn't have
a database file. I want to change the file system from ext2 to
ext3. It also can't divide to any partitions.
How to decide journal mode and journal size?
Please advice to me.
Recommend a journal mode. (orderd or journal)
Recommend a journal
2011 Dec 02
0
[LLVMdev] tbaa
Can you post the source code of your test case?
Gan
On Fri, Dec 2, 2011 at 1:44 PM, <liyi at cs.toronto.edu> wrote:
> Hi,
>
> Could anyone tell me how exactly do I use "Type Based Alias Analysis"?
>
> I compiled the C program with Clang, and verified that there is tbaa
> metadata in the IR code.
>
> But then when I use "opt -tbaa input.c.bc
2012 Feb 06
2
histogram
With R and the hist function, is there a way to make a histogram in which
the y axis denotes propotion with respect to a separate sample dataset of
the same range instead of frequency?
[[alternative HTML version deleted]]
1999 Apr 21
1
text works with the postscript device?
Dear R experts,
R (0.63) does not seem to write me any text in a PS file.
Trying
x11()
plot(12)
text(5,5, "Hello World")
works fine.
Now I would like to have the same as a PS file.
postscript("foobar.ps")
plot(12)
text(5,5,"Hello World")
dev.off()
Gives me a PS file with the plot -- but without the
"Hello World".
Why? I'm completely clueless.
Ciao
2005 Jan 13
6
random samples
hi,
I am encoutering a very little problem that seemed to be so easy to solve....
I need to divide the array
> A<-c(1:200)
into two subsets at random. Therefore I use the function "sample" in R:
> S<-sample(A,100)
for a random sample of size 100. Then I need the values in A that are not
selected in S to be put in another array, there is my problem!
Is there anyway to do
2006 Jun 28
1
superimposing histograms
I want to superimpose histograms from three populations onto the same graph,
changing the shading of the bars for each population. After consulting the
help files and the archives I cannot find out how to do this (seemly) simple
graph. To be clear, I want
- a single x axis (from -3 to 18)
- three groups of bars forming the histograms of each population (they will
not overlap much, but this is
2002 Jul 29
1
Reading Files from Ext3 with No partion
I've Managed to over write my MBR and offcourse all my partions are gone (stupid me). i kept a backup of my MBR but silly me it's on the same disk that died.
i have a rescue disk is there any way i can read from /dev/hda and go through the whole disk (RAW DATA) searching for "mbr backup file" and then read it.
I am using EXT3 with slackware 8.1/RH 7.2
I am sorry my spelling is
2005 Jan 14
5
subsampling
hi,
I would like to subsample the array c(1:200) at random into ten subsamples
v1,v2,...,v10.
I tried with to go progressively like this:
> x<-c(1:200)
> v1<-sample(x,20)
> y<-x[-v1]
> v2<-sample(y,20)
and then I want to do:
>x<-y[-v2]
Error: subscript out of bounds.
2016 Jan 22
2
Adding support for self-modifying branches to LLVM?
On Thu, Jan 21, 2016 at 2:52 PM, Jonas Wagner <jonas.wagner at epfl.ch> wrote:
> Hello,
>
> There is some data on this, e.g, in “High System-Code Security with Low
> Overhead” <http://dslab.epfl.ch/proj/asap/#publications>. In this work we
> found that, for ASan as well as other instrumentation tools, most overhead
> comes from the checks. Especially for
2011 Apr 10
5
Question about levels/as.numeric
Hi,
I am still new to R and this is my first post on this mailing-list.
I have two .csv (each one being a column of real numbers) coming from the
same database (the first one is just longer than the second) and I read them
in R the following way:
returns <- read.csv("test.csv", header = FALSE)
returns2 <- read.csv("test2.csv", header = FALSE)
However, the two
1999 Oct 21
1
2.05a Solaris 2.5.1 SPARC -problem-
Hello,
I've sucessfully compiled 2.05a for Solaris 2.6 and its working OK.
Compiling on Solaris 2.5.1 (with gcc or Sun cc) goes smoothly but
smbd fail with the following error in the log:
[1999/10/21 09:45:30, 0] lib/util_sock.c:(507)
read_socket_data: recv failure for 4. Error = Invalid argument
Same debug level 10
[1999/10/21 11:47:03, 2] smbd/server.c:(716)
Changed root to /
2014 Nov 15
3
[LLVMdev] [PATCH] Protection against stack-based memory corruption errors using SafeStack
Hi Kostya,
>On Wed, Nov 12, 2014 at 2:50 AM, Volodymyr Kuznetsov <vova.kuznetsov at epfl.ch
>> wrote:
>
>> Dear LLVM developers,
>>
>> We've applied the feedback we received on Phabricator on the SafeStack
>> patches,
>>
>
>Did you investigate the possibility of moving the transformation from
>codegen to the LLVM level, i.e. the same level
2014 Oct 02
2
[LLVMdev] Autotuning parameters/heuristics within LLVM
Hi,
I am planning to begin a project to explore the space of tuning LLVM
internals in an effort to increase performance. I am wondering if
anyone can point to me any parameterizations, heuristics, or
priorities functions within LLVM that can be tuned/adjusted. So far,
I'm considering BranchProbabilityInfo and InlineCost. Does anyone have
any other suggestions?
Thanks,
Robert
2006 Jul 15
1
Find peaks in histograms / Analysis of cumulative frequency
Hello all,
I have some histograms of amount of DNA in some cells (DU145 cells
overexpressing Bax and Bcl-xL for those who wish to know). The histograms
show not only two peaks as expected, but three, indicating that some cells
have more than normal amounts of DNA.
I am interested in knowing how much of the cell populations are in each peak
as well as between.
I am not really sure how to go
2002 Sep 13
2
querying the ext3 journal
I'm not sure if this question makes sense, but here goes. We have the need
to periodically check for newly created/modified files in a rather elaborate
and well populated directory structure. I don't believe that simply walking
the directory and checking stat's is the answer, given that I need a process
that will impose minimal performance degredation on the system. Would it be
2007 Mar 08
2
curve of density on histogram
Hi R users,
I would like to know why these following curve densities don't appear
correctly on the histograms.
Thank you for your help
library(lattice)
library(grid)
resp <- rnorm(2000)
group <- sample(c("G1", "G2", "G3", "G4"), replace = TRUE, size = 1000)
histogram(~ resp | group, col="steelblue",
panel = function(x, ...){
std
2002 May 06
4
ext3 waking hard disk
hi :)
when using ext3, i can't get my hard disks to go to standby mode
any more. i am using timeouts set by hdparm with 2.4.18 kernels.
even when i issue a standby command manually, the disk
spins up again after a few seconds.
however, (to my knowledge) no user space program accessed
this disk at that time.
i suspect ext3's journal to be causing the disk accesses.
is that possible?