Displaying 20 results from an estimated 5497 matches for "uwes".
Did you mean:
uses
2000 Nov 07
2
par(las=.) gives wrong "adj" for mtext() (PR#726)
For R Version 1.1.1 and R-devel (Linux)...
Sorry, there's no time to fix myself now
{e.g., after starting a new device} :
par(las=3); plot(1:10); par(las=1) ; mtext("mtext")
Gives a left-adjusted (as for adj = 0) mtext,
even if par("adj") is still 0.5
Note that I'm also not convinced that mtext() should follow par("las")
as it does in the
2003 Oct 28
2
formula parsing, using parts ...
I am writing a little abstraction for a series of tests. For example,
I am running an anova and kruskal.test on a one-factor model. That
isn't a particular problem, I have an interface like:
my.function <- function(model,data) {
print(deparse(substitute(data)))
a <- anova(lm(formula,data))
print(a)
if(a$"Pr(>F)"[1] < 0.05) {
pairwise.t.test(???)
}
2001 Dec 12
1
RE: [R] Rcmd SHLIB problem
Yes, changing line 67 of SHLIB as Uwe suggested worked:
C:\TEMP>Rcmd SHLIB tryf.f
make[1]: `libR.a' is up to date.
rm -f -f tryf.a
ar cr tryf.a *.o
ranlib tryf.a
------- Building tryf.dll from tryf.a --------
echo LIBRARY tryf > tryf.def
echo EXPORTS >> tryf.def
nm tryf.a > Defs
sed -n '/^........ [BCDRT] _/s/^........ [BCDRT] _/ /p' Defs >> tryf.def
rm -f Defs
2003 Apr 12
1
R-1.7.0-beta: in check-all test-IsAs fails on WinNT4.0
Todays R-1.7.0-beta (see below) compiles fine on, but it doesn't pass
make check-all
on WinNT4.0, SP6.
Looking closer, test-IsAs fails:
D:\uwe-ns\R-1.7.0\tests>make -f Makefile.win test-IsAs
running tests of consistency of as/is.*
make[1]: Entering directory `/cygdrive/d/uwe-ns/R-1.7.0/tests'
creating 'isas-tests.R'
make[1]: *** [isas-tests.R] Error 253
make[1]: Leaving
2010 Dec 30
5
Why is format(10000, big.mark = "\\,") not 10\,000?
Hi,
why does format(10000, big.mark = "\\,") not give me "10\,000"? How can I get this kind of "big.mark"?
Cheers,
Marius
2005 Jul 27
5
Parallel port setup and debugging.
Hello!
I using the latest released version (20050725).
Im having problems using the parallel port.
How do i setup the parallel port using the new registry system?
Which modules control the parallel port. Which debug groups should i
enable?
/Pedro
>>>> GN Netcom Group NOTICE - AUTOMATICALLY INSERTED <<<<
The information transmitted is intended only
2007 Aug 30
5
Single plot multiple levels in x?
Plotting with 2 x axis?
One axis inside another, for example salary within state,
1-50 | 50 ? 100 | 100+ | 1- 50 | 50 -100 | 100+ | ? repeated bins for salary
AL ! AR ?? more states
The values are all stored with a single data frame. I have tried different things with the axis function and done many
2011 May 09
5
Suppressing iterations in DEoptim
Dear R users,
During the the running of DEoptim function which belongs to "DEoptim"
package it automatically gives the output like the following:
Iteration: 1 bestvalit: 181.379847 bestmemit: 0.226499 1.395852
Iteration: 2 bestvalit: 14.062649 bestmemit: 2.290357 5.597838
Iteration: 3 bestvalit: 14.062649 bestmemit: 2.290357 5.597838
Iteration: 4 bestvalit: 14.062649
2000 Aug 21
4
symbols: xlim and ylim cannot be specified (PR#639)
symbols(iris[,1],iris[,2],rectangles=as.matrix(iris[,3:4]),inches=0.3,
ylim=c(1,5))
Error in plot.default(NA, NA, type = "n", ylim = ylim, xlim = xlim, xlab = xlab, :
formal argument "ylim" matched by multiple actual arguments
Since plot is called inside symbols, with specified xlim and ylim,
any specification through ,... hurts this call.
I am pretty sure that you
2001 Dec 11
2
Rcmd SHLIB problem
Dear R-help,
I'm having problem creating a dll using Rcmd SHLIB with R-1.3.1 on WinNT4:
C:\TEMP>Rcmd SHLIB tryf.o
make[1]: `libR.a' is up to date.
make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop.
C:\TEMP>Rcmd SHLIB tryf.f
make[1]: `libR.a' is up to date.
make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop.
I
2001 Dec 11
2
Rcmd SHLIB problem
Dear R-help,
I'm having problem creating a dll using Rcmd SHLIB with R-1.3.1 on WinNT4:
C:\TEMP>Rcmd SHLIB tryf.o
make[1]: `libR.a' is up to date.
make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop.
C:\TEMP>Rcmd SHLIB tryf.f
make[1]: `libR.a' is up to date.
make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop.
I
2017 Jun 22
2
Unexpected behaviour of base::qr()$rank
2017-06-22 19:49 GMT+02:00 Uwe Ligges <ligges at statistik.tu-dortmund.de>:
> On 22.06.2017 17:11, Bernd Funovits wrote:
>>
>> Hello,
>>
>> I experienced some unexpected behaviour while determining the rank of matrices (sometimes 1x1 matrices):
>> base::qr(matrix(1e-20))$rank returns 1 (incorrect)
>> base::qr(diag(c(1, 1e-20)))$rank returns 2
2010 Jan 22
4
Rotating the axis labels in the basic graphic device ?
Hello dear R help group,
I learned recently that one can change the rotation of labels in the axis,
when using a lattice plot, for example:
library(lattice)
barchart(yield ~ variety , data = barley,
groups = year,
ylab = "Barley Yield (bushels/acre)",
scales = list(rot = 45))
My question is: Is there an application of "rot" in something like
2011 Jul 02
5
%dopar% parallel processing experiment
dear R experts---
I am experimenting with multicore processing, so far with pretty
disappointing results. Here is my simple example:
A <- 100000
randvalues <- abs(rnorm(A))
minfn <- function( x, i ) { log(abs(x))+x^3+i/A+randvalues[i] } ?## an
arbitrary function
ARGV <- commandArgs(trailingOnly=TRUE)
if (ARGV[1] == "do-onecore") {
?library(foreach)
?discard <-
2009 Feb 25
4
Strange behavior of savePlot
Hi all,
I am using savePlot in a loop for saving several graph but I get some
graph in 553x552, some other in 1920x1119. How comes ?
My data are almost all the same (same label, same xlim / ylim, almost
same data. Only the color changes). I save them in bmp.
Thanks for your help.
Christophe
2008 Aug 04
0
[Bug 1163] new option: --show-config or similar to show configuration state (?)
https://bugzilla.mindrot.org/show_bug.cgi?id=1163
Uwe Hermann <uwe at hermann-uwe.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
CC|
2003 Mar 29
1
install of grid fails in R-1.7.0beta_2003-03-29
Hi,
I'm just compiling R-1.7.0beta_2003-03-29.tar.gz on WinNT 4.0:
the installation of package grid fails (at least the build of help files):
---------- Making package grid ------------
installing inst files
adding build stamp to DESCRIPTION
making DLL ...
... DLL made
installing R files
installing man source files
installing indices
Error in
2016 Apr 09
3
[FORGED] Generating random data with non-linear correlation between two variables
Please specify your goal in the oracle/psql analytical functions you know or specify what you mean by nonlinear correlation
Sent from my iPhone
> On Apr 9, 2016, at 6:09 AM, Muhammad Bilal <Muhammad2.Bilal at live.uwe.ac.uk> wrote:
>
> No its not. I am doing all these experiments for my own learning purpose. I am Oracle SQL & PLSQL programmer and I can do these things with
2004 Jan 20
1
Compiling problems with SuSE
> -----Original Message-----
> From: Uwe Klein [mailto:uwe-klein@foni.net]
> Sent: Monday, January 19, 2004 9:14 AM
> To: asterisk-users@lists.digium.com
> Subject: Re: [Asterisk-Users] Compiling problems with SuSE
>
> > > From: Dustin Knuttgen on Sunday, January 18, 2004 11:47 PM
> >
> > > We tried to use SuSE initially and had no luck compiling zaptel
2004 May 26
1
FW: is.weekend() odd behaviour
Kurt,
Uwe suggested I write to you as maintainer of chron ... at the start of
is.weekend, in the check on the argument type, maybe just change chron() to
as.chron()? This would ensure as.chron.POSIXt gets called on POSIXt
arguments, and (I think) fixes the problem. I tested and it seems ok. No
warning/error required.
> is.weekend
function(x)
{
if(!inherits(x, "dates"))