similar to: R-help Digest, Vol 103, Issue 19

Displaying 14 results from an estimated 14 matches similar to: "R-help Digest, Vol 103, Issue 19"

2011 Oct 19
2
R-help Digest, Vol 104, Issue 19
Okt?ber 19-t?l 21-ig irod?n k?v?l vagyok, ?s az emailjeimet nem ?rem el. S?rg?s esetben k?rem forduljon K?rp?ti Edithez (karpati.edit at gyemszi.hu). ?dv?zlettel, Mihalicza P?ter I will be out of the office from 19 till 21 October with no access to my emails. In urgent cases please contact Ms. Edit K?rp?ti (karpati.edit at gyemszi.hu). With regards, Peter Mihalicza
2008 May 27
1
label outliers in geom_boxplot (ggplot2)
Dear List and Hadley, I would like to have a boxplot with ggplot2 and have the outlier values labelled with their "name" attribute. So I did > library(ggplot2) > dat=data.frame(num=rep(1,20), val=c(runif(18),3,3.5), name=letters[1:20]) > p=ggplot(dat, aes(y=val, x=num))+geom_boxplot(outlier.size=4, outlier.colour="green") >
2004 Sep 06
4
Cox regression for prevalence estimates
Hello, I'm an MD working in an eye clinic. I'm learning by myself to use R for use in my research works and for implementation in a software project. There are some authors who recomends the use of Cox regression as a substitute for Logistic regression (<a href="http://www.biomedcentral.com/1471-2288/3/21.pdf"> Barros AJD, Hirakata VN. BMCMedical Research Methodology, 2003;
2008 Sep 18
1
PDF fonts problem
Dear List, I am writing a paper in Hungarian, that I Sweave and than pdfLaTeX. Everything is fine, except for two accented letters in the graphs that behave strange, though on the screen and in eps exports they look perfect. The problem is that I need pdf graphs, since I would like to have a PDF after LaTeX-ing. For the example below I downloaded the following two font sets: 1. Latin Modern
2004 Aug 25
0
Eltemette az elefánt-trutyi
-------------------------------------------------- Eltemette az elef?nt-trutyi Paderborn, N?metorsz?g Friedrich Riesfeldt ?llatkerti gondoz? sz?kreked?ses elef?ntj?nak beadott 22 adag ?llati hashajt?t ?s megetette egy v?ka szederrel, f?g?vel ?s szilv?val. A bedugult vastagb?r? v?g?l els?lt - ?s megfojtotta a gondoz?t 200 font trutyival. A vizsg?lat szerint a 46 ?ves Friedrich megpr?b?lt a beteg
2010 Mar 09
2
vacation script
hi All, One of my users created this sieve script via roundcube's avelsieve implementation: # This script has been automatically generated by avelsieve # (Sieve Mail Filters Plugin for Squirrelmail) # Warning: If you edit this manually, then the changes will not # be reflected in the users' front-end!
2011 Sep 24
1
help
Mathew Brown Institute of Bioclimatology University of G?ttingen B?sgenweg 2 37077 G?ttingen, Germany t: +49 551 39 9359 mathew.brown at forst.uni-goettingen.de On 9/24/2011 6:00 PM, r-help-request at r-project.org wrote: > Send R-help mailing list submissions to > r-help at r-project.org > > To subscribe or unsubscribe via the World Wide Web, visit >
2017 Sep 22
0
[cfe-dev] Cross translational unit analysis in codechecker
Thanks Daniel for the info. Siddharth On Thu, Sep 21, 2017 at 10:37 PM, Dániel Krupp <daniel.krupp at ericsson.com> wrote: > Hi Siddharth, > > > > since the CTU functionality is not yet part of the mainline clang (review > ongoing), you will need to clone our patched version of clang5 > > https://github.com/Ericsson/clang > > (ctu-clang5 branch) > > >
2007 Sep 17
1
aggregate function oddity
[This email is either empty or too large to be displayed at this time]
2018 Mar 09
2
Run smbd in AD user context
Hi all! Is it possible to run smbd in an AD user's context? If not, is it possible to have smbd to tell a third-party function to not stray outside from logged on user's (AD user) context (home directory)? I'm programming a VFS module[1] which will be the bridge between Windows and iRODS[2]. iRODS depends on a configuration file, .irods/irods_environment.json, which resides in the
2018 Mar 09
0
Run smbd in AD user context
On Fri, Mar 09, 2018 at 12:07:54PM +0100, Davor Vusir via samba wrote: > Hi all! > > Is it possible to run smbd in an AD user's context? > If not, is it possible to have smbd to tell a third-party function to not > stray outside from logged on user's (AD user) context (home directory)? > > I'm programming a VFS module[1] which will be the bridge between Windows
2018 Mar 10
2
Run smbd in AD user context
2018-03-09 20:39 GMT+01:00 Jeremy Allison <jra at samba.org>: > On Fri, Mar 09, 2018 at 12:07:54PM +0100, Davor Vusir via samba wrote: > > Hi all! > > > > Is it possible to run smbd in an AD user's context? > > If not, is it possible to have smbd to tell a third-party function to not > > stray outside from logged on user's (AD user) context (home
2008 Sep 22
1
R-help Digest, Vol 67, Issue 23
Warranty on Accuracy, Precision, Legality, ... of R in Research (These questions may well have been raised.) What is the implied warranty of using R for research & publications, consulting, etc.? Alternately, how does one obtain such a warranty? Your answers will be much appreciated. Perhaps you can point me to some websites which discussed this subject in the past. Thanks & regards
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.