Displaying 20 results from an estimated 1300 matches similar to: "misspelling - intension (PR#9470)"
2008 Sep 22
1
handling spaces in R invocation scripts
On posix systems, invoking R with arguments containing shell word delimiters
(like space) doesn't currently work:
bash-2.05b$ ./R -f "/path/to/script with spaces.R"
Fatal error: cannot open file '/path/to/script': No such file or directory
The attached patch, built against the devel snapshot of 2008-09-20, attempts to
fix this problem. In R.sh.in and BATCH, it
2008 Oct 14
2
dos-style line endings in .Rbuildignore result in files not being excluded
I was trying, on a Linux system, to get a .Rbuildignore file to work.
After far too long, I found the problem was the <CR><NL> line endings in
the .Rbuildignore file -- I had originally created it on a Windows
system, and emacs in Ubuntu was politely hiding that fact from me. The
patterns didn't work to exclude files because it was trying to match
filenames to patterns like
2013 Feb 19
0
/openssh/donations.html word misspelling
Hi,
Please fix the misspelling of "separate" in "The people and
organizations who have contributed money, equipment, or services to
OpenSSH are not kept seperate" on
http://www.openbsd.org/openssh/donations.html.
Best regards,
Nick Permyakov
2007 Jun 21
0
odfWeave version 0.5.9 released
A new version of odfWeave has been released to CRAN. This is a
significant change to the package internals. It now uses the XML library
instead of a bunch of regular expressions.
New features include:
- Captions for tables and figures
- Functions to insert page breaks and to change the page layout
- Style objects for frames and pages
Bug fixes include:
- Parsing of arguments for
2008 Mar 06
0
Press delete key three times in R-2.6.1 to get segmentation (PR#10898)
org.r-project at pooryorick.com wrote:
> Full_Name: Poor Yorick
> Version: R-2.6.1
> OS: 2.4.21-50.ELhugemem #1 SMP Tue May 8 17:10:31 EDT 2007 i686 i686 i386 GNU/Linux
> Submission from: (NULL) (148.168.40.4)
>
>
> After compiling R-2.6.1 with gcc-4.2.1 pressing the 'delete' key three times in
> an interactive session causes R to malfunction, spitting out an
2008 Jun 03
1
R-2.7.0 rJava installation failure on x86_64
attempting to install rJava on R-2.7.0, x86_64 platform, config.log shows the
following error:
configure:3880: checking whether JNI programs can be compiled
configure:3898: gcc -m64 -std=gnu99 -o conftest -g -O2
-I/path/to/x86-64-linux/jdk-1.6.0_06/jre/../include conftest.c
-L/path/to/x86-64-linux/jdk-1.6.0_06/jre/lib/amd64/server
-L/path/to/x86-64-linux/jdk-1.6.0_06/jre/lib/amd64
2008 Sep 22
1
Statistical question re assessing fit of distribution functions.
I am in a situation where I have to fit a distrution, such as cauchy or
normal, to an empirical dataset. Well and good, that is easy.
But I wanted to assess just how good the fit is, using ks.test.
I am concerned about the following note in the docs (about the example
provided): "Note that the distribution theory is not valid here as we have
estimated the parameters of the normal
2008 Oct 23
3
Interpretation of t.test results
I have run a t.test in R, and received these results:
Two Sample t-test
data: rsa and umple
t = 0.9819, df = 10, p-value = 0.3493
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-76.1541 196.1541
sample estimates:
mean of x mean of y
508.3333 448.3333
Can someone give me a detailed interpretation of the above results?
Specifically,
2008 Sep 08
1
Different result with different order of binding (PR#12742)
Full_Name: Kyun-Seop Bae
Version: 2.7.2
OS: MS-Windows XP SP2
Submission from: (NULL) (148.168.40.4)
# Script that I used
rm(list=objects())
objects()
WT <- 91
AGE <- 41
SCR <- 1.3
CCL1 <- (140-AGE) * WT / (72 * SCR)
CCL2 <- (140-AGE) * WT / 72 / SCR
CCL1
CCL2
identical(CCL1, CCL2)
identical(CCL1, 96.25)
identical(CCL2, 96.25)
CCL1*10 + 0.5
CCL2*10 + 0.5
floor(CCL1*10 +
2008 Sep 08
1
(PR#12742) Different result with different order of
FAQ 7.31 strikes again.
This is expected: you cannot do exact arithmetic on a binary computer if
some of the quantities involved are not binary fractions (e.g. 1.3)
See also the warning in ?`==`: identical() is equally inappropiate for
computed numerical quantities.
On Mon, 8 Sep 2008, kyunseop.bae at gmail.com wrote:
> Full_Name: Kyun-Seop Bae
> Version: 2.7.2
> OS: MS-Windows XP
2011 Aug 26
2
Prevent Infinite loop in Self-Join Association
Hi, I have such a data base which has a self-join as association.
I want to know that is there any good gem available which i can use for
self-join in my application?
My main intension is to prevent infinite loop in searching the records.
@Anand
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email
2012 May 28
2
Hash Table - Select and Change Data iniside Matrix Using "Between"
Hi,
Here i have been an matrix like this,
*NAME AGE PALCE TRUE/FALSE*
ABC 20 INDIA
XYZ 30 FRANCE
PQR 40 USA
MNO 30 KENIYA
DEF 25 AUSTRALIA
GTY 34 CANADA
BNH 38 JAPAN
Here, *TRUE/FALSE *Column containing empty values.
So my requirement what is, need to change all the TRUE/FALSE
2012 May 25
4
Hash Table - Select and Change Data iniside Matrix
Hi,
Here i have been a matrix like this,
*NAME AGE PALCE TRUE/FALSE*
ABC 20 INDIA
XYZ 30 FRANCE
PQR 40 USA
MNO 30 KENIYA
DEF 25 AUSTRALIA
Here,* TRUE/FALSE* Column containing empty values.
So my requirement what is , need to change all the *TRUE/FALSE *column value
into "*TRUE*" where *AGE =
2006 May 31
1
url parameter :id with slash (/) failed to route
Hi there,
My routes.rb is something like
map.connect '':controller/:action/:id''
However, when a url request likes
http://xxx/user/category/a/b
My intension is to call
:controller => ''user''
:action => ''category''
:id => ''a/b''
However, :id has slash in it (a/b) will make rails fail to route.
(apache fail, webrick
2010 May 16
1
play a sound file directly to a caller channel
Hello User-List,
is it possible to play a sound file directly to a caller channel?
Like this AMI command
Action: Originate
Channel: SIP/20-00001d41
Application: Playback
Data: /path/to/audio/file
I get an Error Message. My intension is to play a sound file to a caller and the other callers don't hear this.
Can someone help me ?
Thanks a lot
Bye Daniel
2008 Mar 26
3
Misc/List Search Path from keyboard (PR#11036)
Full_Name: Richard Reed
Version: 2.6.2
OS: MS Windows XP Pro
Submission from: (NULL) (76.121.170.35)
Pressing Alt-M+s doesn't search path. It just generates another ">". It does
this in "vanilla" too. However, Alt-M+click "list search path" does work. Note
that when I press Alt-M (and the "Misc" menu drops down) the second "s" in
2007 Jun 11
8
R vs. Splus in Pharma/Devices Industry
Following up to some extent on Friday's discussion regarding the
'validation' of R, could I ask the list group's opinion on possible
advantages of R over Splus from a pharma/devices perspective? I wish to
exclude the obvious price difference, which doesn’t seem to carry as much
weight as I would have thought. Besides, I have noticed many former Splus
users gravitating towards R,
2004 Aug 06
3
Mixing audio
Is There any intension to deal with mixing two or more streams encoded with "speex".
Most voice wise applications (such as conference) need this feature.
Oded Rephael
<p><p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'speex-dev-request@xiph.org'
2005 Aug 05
1
starting asterisk with nice -5
Is there any script guru on the list that can help me.
I'm trying to start asterisk with nice -5.
Normally the command would be:
nice -5 asterisk
but asterisk start from the scrip on Gentoo as -U asterisk -G asterisk
Here is the script:
===============
depend() {
need net
use zaptel
}
start() {
local OPTS USER GROUP
if [[ -n "${ASTERISK_NICE}" ]];
2005 Aug 28
2
xerbla called from BLAS routine (PR#8100)
Full_Name: G?ran Brostr?m
Version: R-2.1.1, 2.2.0
OS: Debian unstable
Submission from: (NULL) (213.65.9.59)
Some BLAS routines call xerbla for error messages, which results in a message
like
"LAPACK routine DGER gave error code -9".
Suggested solution: In
void F77_NAME(xerbla)(char *srname, int *info)
{
/* srname is not null-terminated. It should be 6 characters. */
char