Displaying 20 results from an estimated 400 matches similar to: "Local R Training"
2010 Mar 26
1
BaselR
BaselR - The new R meeting
We are pleased to announce the new R meeting to be held in Basel,
Switzerland.
BaselR will be held from 6:30-9:30pm on Tues, Apr 27 at TransBARent:
http://transbarent.business.sv-group.ch
Doors open at 6:30,pm with the presentations starting at 7:00pm
Introduction: What is Basel R?
Andreas Krause:... Graphing Pharma Data
Yann Abraham: Graphics
Charles Roosen: Web
2005 Jan 06
1
pdbedit syntax for forcing user to change password
Hi all
Maybe a stupid question, but I'm not able to figure this out from the
manpage nor from the HOWTOs...
How can I force a user to change his password at next logon?
I tried:
# pdbedit -P "user must logon to change password" -C 0 -u username
# pdbedit -u username -P "user must logon to change password" -C 0
# pdbedit -P "user must logon to change password"
2005 Mar 23
4
Samba-LDAP TLS problems with inofficial Debian OpenLDAP 2.2 packages
Dear Torsten, dear samba list reader
Three days ago I switched our domain from a NT 4 domaincontroller to
Samba-OpenLDAP, controlled by a Debian Sarge system. I installed the
following inofficial Debian OpenLDAP 2.2 packages (I know these are not
supported, but TLS with OpenSSL is essential to us...):
Package: slapd
Version: 2.2.20-1.hrz.1
Package: libldap2.2
Version: 2.2.20-1.hrz.1
2011 Feb 18
1
debugger() fails if "..." in function arguments
Dear all,
I'm having a problem with debugger() in both R 2.8.0 and R 2.12.0.
Probably also versions in-between.
I don't see it logged in the bug database, but it's hard for me to
imagine that no-one else has encountered it. So my question is whether
it's a known problem with a workaround, or do I log it as a new problem?
The situation is that if I use
2003 Aug 28
6
Why are the binaries so huge?
Hi list
I just compiled 3.0rc1 on Solaris 9 (UltraSparc IIe) with gcc 3.3. Seems
to work fine but I am surprised by the enormous size of the binaries:
(ub-blade1):/usr/local/samba/sbin # ll
total 232272
-rwxr-xr-x 1 root other 44719632 Aug 28 15:07 nmbd
-rwxr-xr-x 1 root other 89726544 Aug 28 15:07 smbd
-rwxr-xr-x 1 root other 44807356 Aug 28 15:07 swat
-rwxr-xr-x
2011 Apr 05
1
Antw: Re: Confidence interval for the difference between proportions - method used in prop.test()
Dear Josh,
Thanks for your help!
Does your answer mean, that you agree the two methods should do the same, and what I was guessing, despite the small differences?
What I prefer about ci.pd is, that the help clearly says which method is implemented, which is not the case for prop.test. But I do not know who has programmed the function.
Best wishes
Steffi
Stefanie von Felten, PhD
Statistician
2012 Feb 07
1
xtable "beta" testing wanted
Dear R-users,
I've enhanced the "xtable" package, adding numerous features that have been requested by users. The changes are listed below.
The objective throughout has been to avoid any breaking changes. However, as "xtable" is widely used and is a dependency of many packages I'd like to have others try it out before I post it to CRAN. Both bug reports and design
2011 Oct 21
3
Contributors on R-Forge
Hi,
I've recently taken over maintenance for the "xtable" package, and have
set it up on R-Forge. At the moment I'm pondering what the best way is
to handle submitted patches. Basically, is it better to:
1) Be non-restrictive regarding committer status, let individuals
change the code with minimal pre-commit review, and figure changes can
be reviewed before
2007 Feb 21
2
Coxph and ordered factors
Dear useRs,
I am trying to fit a Cox PH model on survival data from a lung cancer
dataset. I would like to include the patient staging (I-IV) as a
covariate. For this I use the following function:
coxph(Surv(time,status) ~ stage)
The staging information is a categorical variable, and it is important
to take the ordering into account (I<II<III<IV). Does the coxph function
handle
2011 Apr 05
1
Confidence interval for the difference between proportions - method used in prop.test()
Hello,
Does anyone know which method from Newcombe (1998)* is implemented in prop.test for comparing two proportions?
I would guess it is the method based on the Wilson score (for single proportion), with and without continuity correction for prop.test(..., correct=FALSE) and prop.test(..., correct=TRUE). These methods would correspond to no. 10 and 11 tested in Newcombe, respectively. Can
2008 Jun 18
4
Editor for Mac OSX
Dear R-list
I am (forced) to change from Linux to Mac and am now looking for a new editor for R. I would like one that features a split window (console + editor) as well as syntax highlighting. Can anyone help? Especially the split-window feature does not seem to be easily available in the editors desribed on the R-help site, except Emacs, which I am reluctant to start using. I am on a MacBook Air
2006 Jun 14
4
write data from function into external table
Dear list,
My apologies if a solution / explanation to this already exists on the list,
but it is difficult to assign it to a certain keyword.
test<-c(1:3)
testfct <- function(x) {test[1]<-100}
test
[1] 1 2 3
testfct(1)
[1] 1 2 3
Basically, I would like to write data into an external table that the function
does not know. Why is this not working / what alternatives exist?
Thanks,
2008 Jan 07
4
is there something like or() ?
hi, this may be trivial, but we can't seem to find anything adequate,
(although there is a work around with match() ). We are looking for something
along the lines of
plot(table1[table1$var2==or("a","b","c","d"),"var1"])
would be handy, with the potential or() function leading to what
plot(table1[table1$var2=="a" |
2020 Apr 17
2
Demo for linking native routines between R packages
Dear R developers,
I want to advertise a small project for the educational purpose to show
people how to link native routines.
In R programming, we need to link to native routines in C, C++, or Fortran
from the R environment. In most cases, the linking works within one
package, namely the R code in a package calls the native code in the same
package.
This is not necessarily always the case.
2011 Mar 04
2
overleap an iteration within a for-loop when error message produced
Dear R-list member,
I'm using the function pmnorm() (-->library(mnormt)) within a for-loop.
Certain parameter values leads to an error message:
"(In sqrt(diag(S)) : NaNs produced, In sqrt(1/diag(V)) : NaNs
produced, In cov2cor(S) : diag(.) had 0 or NA entries; non-finite result
is doubtful)"
obviously because "NaNs" were produced.
Is it possible to tell R that it
2006 Feb 14
2
How to handle large dataframes?
Dear all
I imported a Stata .dta file with the read.dta-function from the
foreign-package. The dataframe's dimensions are
> dim(d.apc)
[1] 15806 1300
Importing needs up to 15 min and calculations with these data are rather
slow (although I subset the data before starting analyses).
My questions are:
1. Has someone experiences importing Stata files (alternatives to
read.dta) ?
2.
2010 Feb 24
1
Remove missing observations
Hi everyone
I have the following problem: My dataframe has 3 variables: ID, Year and
and an outcome variable. The dataframe contains repeated measurements
because the subjects filled out a questionnaire every year. The time span
covers 2 years.
Now I want to check if there is a significant change in the outcome over
the 2 years with a paired wilcox.test. The problem: Not every subject
2016 Jan 08
3
DNS problems on windows AD
Hello Marc,
samba is 4.1.22.
I let the dcpromote choose the DC.
DNS is internal
Yes the windows DC has also global catalog
Regards
Olivier
On Fri, Jan 8, 2016 at 4:38 PM, Marc Muehlfeld <mmuehlfeld at samba.org> wrote:
> Hello Olivier,
>
> Am 08.01.2016 um 12:02 schrieb Olivier Weinstoerffer:
> > I have a domain composed by 3 linux samba 4 AD servers.
>
> - Which
2004 Oct 20
2
common axis label in multiple plot area
Hello
A very short question: Using multiple plots with par(mfrow=c(3,3)), how
can I get R to indicate one common y- and x-axis label? I tried to use
text() in par, but this is then overwritten when I plot the graphs.
--
Sebastian Leuzinger
Institute of Botany, University of Basel
Schönbeinstr. 6 CH-4056 Basel
Ph. 0041 (0) 61 267 3511
fax 0041 (0) 61 2673504
email: Sebastian.Leuzinger@unibas.ch
2005 Jul 28
1
stl()
Hello, anyone got an idea on how to use stl() so that the remainder eventually
becomes white noise? i used stl repeatedly but there is autocorrelation in
the remainder that i can't get rid of.
os: linux suse9.3
------------------------------------------------
Sebastian Leuzinger
Institute of Botany, University of Basel
Sch??nbeinstr. 6 CH-4056 Basel
ph 0041 (0) 61 2673511
fax 0041 (0)