Displaying 20 results from an estimated 110 matches similar to: "regex to match word boundaries"
2010 Aug 05
2
compare gam fits
Hi folks,
I originally tried R-SIG-Mixed-Models for this one
(https://stat.ethz.ch/pipermail/r-sig-mixed-models/2010q3/004170.html),
but I think that the final steps to a solution aren't mixed-model
specific, so I thought I'd ask my final questions here.
I used gamm4 to fit a generalized additive mixed model to data from a
AxBxC design, where A is a random effect (human participants in
2019 Jul 18
4
Gráfico tiempos de supervivencia
Hola,
Sí, lo puedes hacer de esta forma...
#-----------------
set.seed(20)
DATOS <- data.frame (
ID = c (1:10)
, TIEMPO = sample(1:40, 10, replace=F)
, DEF = as.factor(sample(c(0,1), 10, replace=T))
)
library(ggplot2)
ggplot( data = DATOS ) +
geom_point( aes(x = TIEMPO, y = ID , shape = DEF, color = DEF), size = 5
) +
geom_segment( aes( x = 0, y = ID, xend =
2004 Jan 29
2
Finding Sweave.sty and other problems
Hi,
I've just tried to run example-3 from Friedrich Leish. I'm using R 1.8.1
and MiKTeX 2.2 on Windows XP.
I go
===
> library(tools)
> Sweave("example-3.Snw")
Writing to file example-3.tex
Processing code chunks ...
1 : term hide
2 : echo term verbatim
3 : term tex
4 : term verbatim eps pdf
You can now run LaTeX on example-3.tex
===
The file example-3.tex
2011 Oct 28
3
[LLVMdev] DIBuilder - what's with the null compile units?
On Mon, Oct 24, 2011 at 9:17 AM, Devang Patel <dpatel at apple.com> wrote:
>
> On Oct 23, 2011, at 12:03 AM, Talin wrote:
>
> Just a follow up on this - I am still having problems, I never did figure
> out a solution. (I've been running with debug off for the last month so that
> I could get work done.)
>
> Here's what I am seeing: I am definitely calling
2006 Aug 04
1
Questions about sweave...
Evening all:
I'm taking a little time to experiment with R, Sweave, and Miktex/LaTex but
I've run up against some problems and -well- I hope that there are some on
the list who might have some suggestions. This will be kind of wordy as I
will include the complete files involved as I'm just not sure what I'm
looking for. Apologies at the outset.
I created the source file
2013 Feb 27
3
Getting compilation error while installing Dhadi
Hi all,
I'm getting compilation error as trying to install latest version of dahdi
on CentOS box 5.9 which I now updated from 5.6. I also installed the
dependencies but still not getting the clue to get install the driver.
Listing down the errors below;
CC [M]
2009 Oct 13
0
How to draw more geographical boundaries
Dear R-users,
I am trying to plot in the same map both NUTS 2 (i.e. regional) and NUTS 3 (i.e. provincial) boundaries for Italy
but I couldn't find how to plot more than one level boundary in the same map.//
//
I have shapefile both for regions and provinces in Italy and I tried to use the "maptool" and "maps" packages without
success.
Thank you in advance for any help.
2012 Jun 05
0
How to compute boundaries for bivariate normal distribution in group sequential design
Hi all
Dear all,
I need to compute boundaries for 3 stages group sequential design with 2
variables using Simpson?s integration method.
There is a r program written by Michael A. Proschant et Al. (2006)
(Statistical Monitoring of Clinical Trials: A Unified Approach) ? see file
attached ? to calculate boundaries for 1 variable only.
Does anyone know how this program can be modified to
2011 Feb 18
1
Boundaries of R
Hello Everyone,
I'm pretty new to R and I'm trying to get some idea of the capabilities of
the language. I work with some pretty large data sets and the consensus
seems to be that R does not work well with big data. I've started talking to
the guys at Revolution, but I need to get some outside opinions of what R
can actually handle. At about what size does R start to run into
2006 Aug 09
2
How to draw the decision boundaries for LDA and Rpart object
Hello useR,
Could you please tell me how to draw the decision boundaries in a scatterplot of the original data for a LDA or Rpart object.
For example:
> library(rpart)
>fit.rpart <- rpart(as.factor(group.id)~., data=data.frame(Data) )
How can I draw the cutting lines on the orignial Data?
Or is there any built in functions that can read the rpart object 'fit.rpart' to do
2010 Sep 15
1
[LLVMdev] indirectbr across function boundaries
Hi
according to [1] and [2] the blockaddress of any basic block can be
obtained.
But I am not sure about that fact that an indirectbr can only target at
a basic block which is within the same function as the indirectbr instruction.
[1] states:
---8<---
All possible destination blocks must be listed in the label list,
otherwise this instruction has undefined behavior. This implies that
jumps
2011 Jul 28
0
[LLVMdev] Aggregate returns possibly failing across JIT boundaries
Using in memory IR, I believe I'm seeing aggregate returns fail when either
a generated function calls an external function (not generated), which returns
an aggregate, or when an external non-generated function calls a generated
one which returns an aggregate. Is this a known issue?
Specifically when using a "non-generated" structure with two unsigned char, or two
unsigned
2017 Jul 13
0
Global create ACL allows out of boundaries mailbox
Hello Dovecot Team,
During my tests I setup a global ACL allowing mailbox create for all authenticated users.
Then, I made a mistake in Thunderbird, tried to create a mailbox directly on the "/shared/"
special folder.
Dovecot created a folder in the global root path of our mail store.
Since I use maildir:/var/vmail/%d/%n/mail as mail_location, it created the mailbox in
/var/vmail
2019 Mar 06
0
FLAC frame boundaries and protocol
Hello Dave.
Frames start with a 14-bit sync code, which is 13 “one" bits and 1 “zero" bit. Subframes start with a 1-bit padding of “zero." Keep in mind that FLAC is a bit stream, not a byte stream, so that 14-bit frame sync can happen anywhere in a pair of bytes. You can’t simply scan memory bytes for a frame sync, at least not unless you allow for 8 variations, apply bit masks,
2019 Mar 19
0
FLAC frame boundaries and protocol
Thanks, guys. Your answers helped and I think I have some ideas now on what to do.
On Wednesday, March 6, 2019 Miroslav Lichvar <mlichvar at redhat.com> wrote:
On Tue, Mar 05, 2019 at 10:26:54PM -0800, Brian Willoughby wrote:
> Frames start with a 14-bit sync code, which is 13 “one" bits and 1 “zero" bit. Subframes start with a 1-bit padding of “zero." Keep in mind that
2005 Sep 05
0
Codebook boundaries
Do codebooks always start at byte boundaries, or can they start at arbitrary
bit positions after the first codebook?
2004 Aug 06
0
song boundaries
Mike,
On Tue, 25 Feb 2003, Michael Smith wrote:
> On Tuesday 25 February 2003 10:31, Deva Seetharam wrote:
> > hello all,
> >
> > in icecast2, how can i determine when one *MP3* song ends and the next one
> > starts?
> >
> > i am involved in user preferences research and i am writing a statistics
> > collecting software the tracks the songs that are
2004 Aug 06
0
song boundaries
On Tue, 25 Feb 2003, Michael Smith wrote:
> On Tuesday 25 February 2003 16:13, Deva Seetharam wrote:
> > Mike,
> >
> > On Tue, 25 Feb 2003, Michael Smith wrote:
> > > On Tuesday 25 February 2003 10:31, Deva Seetharam wrote:
> > > > hello all,
> > > >
> > > > in icecast2, how can i determine when one *MP3* song ends and the next
2004 Aug 06
0
song boundaries
i found that too. but, imho, doesnt have all the necessary details to
write a system that can process metadata.
deva
On Tue, 25 Feb 2003, oddsock wrote:
> the metadata format is not documented officially anywhere, but really isn't
> terribly complicated...
>
> http://www.smackfu.com/stuff/programming/shoutcast.html
>
> shows a nice concise description of it, and was the
2004 Aug 06
1
song boundaries
Deva Seetharam <deva@downstreamdigital.com> said:
> i found that too. but, imho, doesnt have all the necessary details to
> write a system that can process metadata.
>
That's the document I wrote to both read (in incoming mode) and write (to
clients) the mp3/shoutcast metadata support in icecast2. I'd say it's sufficient.
Mike
--- >8 ----
List archives: