search for: fontain

Displaying 20 results from an estimated 68 matches for "fontain".

Did you mean: contain
2007 Jul 17
3
logical operators priority
...for logical operators. I need to select data according the following rule: Condition A & (Condition B | Condition C) How should I write it?? Is Condition A & Condition B | Condition C correct or will R execute (Condition A & Condition B) | Condition C ? Thanks for your help. Delphine Fontaine Delphine Fontaine Statistician Statistics Department - Genexion SA ------------------------------------------------------------ 29, Quai du Mont-Blanc Genva, CH-1201 Switzerland ------------------------------------------------------------ Office: +41 22 704 32 44 Fax:??? +41 22 704 32 42 Ema...
2017 Oct 05
4
dealing with a messy dataset
...For instance I did this data1<-read.table("lvg_table2.txt",skip=70,fill=T) where I used fill=T because the rows don't have the same number of features since R splits the name of the galaxies into 2 columns because of the space. Best Regards, thanks in advance Jean-Philippe Fontaine -- Jean-Philippe Fontaine PhD Student in Astroparticle Physics, Gran Sasso Science Institute (GSSI), Viale Francesco Crispi 7, 67100 L'Aquila, Italy Mobile: +393487128593, +33615653774
2017 Oct 05
0
dealing with a messy dataset
Is this a fixed width format? If so, read.fwf() in base, or read_fwf() in the readr package will solve the problem. You may need to trim trailing spaces though. B. > On Oct 5, 2017, at 10:12 AM, jean-philippe <jeanphilippe.fontaine at gssi.infn.it> wrote: > > dear R-users, > > > I am facing a quite regular and basic problem when it comes to dealing with datasets, but I cannot find any satisfying answer so far. > I have a messy dataset of galaxies like that : > > And XVIII 000214.5+4505...
2017 Dec 04
3
problem with the behaviour of dashed lines in R plots
...8)))) par(new = TRUE) plot(df1$B,as.numeric(df1$A),type="p", col="black", mgp=c(2,0.5,0),cex.lab=1.6,cex=2, xlab = "", ylab = "",xlim=range(c(1.2,1.7)),ylim=rev(range(c(-19,-8))),pch=17) box(lwd=3) dev.off() Thanks in advance, best regards Jean-Philippe Fontaine -- Jean-Philippe Fontaine PhD Student in Astroparticle Physics, Gran Sasso Science Institute (GSSI), Viale Francesco Crispi 7, 67100 L'Aquila, Italy Mobile: +393487128593, +33615653774
2008 Jan 08
2
problem when extacting columns of a data frame in a new data frame
...1 4 C > expectedCNST <- data.frame (cbind (casesCNST$case, casesCNST$expected)) > expectedCNST[1:10,] X1 X2 1 1 4 2 112 3 3 223 3 4 334 3 5 445 3 6 556 3 7 593 3 8 604 3 9 615 3 10 2 3 Why does the variables change ?!? Thanks ! Delphine Delphine Fontaine Statistician Data & Statistics Department - Genexion SA ------------------------------------------------------------ 29, Quai du Mont-Blanc Geneva, CH-1201 Switzerland ------------------------------------------------------------ Office: +41 22 704 32 44 Fax: +41 22 704 32 42 Email: Delphine...
2017 Dec 04
1
problem with the behaviour of dashed lines in R plots
hi Sarah, Thanks a lot for having taken time to answer me and for your reply. I wonder how I missed this solution. Indeed plotting the line with the 2 extreme data points works perfectly. Best, Jean-Philippe Fontaine On 04/12/2017 18:30, Sarah Goslee wrote: > It's because you are plotting a line between each of the points in > your data frame, and they are very close togethe -- Jean-Philippe Fontaine PhD Student in Astroparticle Physics, Gran Sasso Science Institute (GSSI), Viale Francesco Crisp...
2006 Sep 12
1
server linux
...he children have different directories. Then 600 children have a directory on the server and each directory is secured by a password. When they want to save a file on the server, a lot of them may not open their directory. How can I solve this problem. Thank you very much for an answer Dominique FONTAINE fontaine.dominique@skynet.be
2017 Dec 04
0
problem with the behaviour of dashed lines in R plots
...-14.10790 20 1.425015 -14.06372 If instead you use abline(regressor, lty=2) you will get a nice-looking dashed line. Or, if you want only the data extent, you could use just the points for the minimum and maximum values of x. Sarah On Mon, Dec 4, 2017 at 12:13 PM, jean-philippe <jeanphilippe.fontaine at gssi.infn.it> wrote: > dear R users, > > I am performing a linear regression with lm, and I would like to plot the > regressor in dashed lines. I know that the lty=2 option is the way out, but > it has a very strange behaviour: the line starts dashed but then the spaces > b...
2005 Oct 08
2
No incoming calls from chan_capi 0.6
...Urgent handler == numeris1: Interface cleanup PLCI=0x101 Urgent handler And here is my capi.conf [numeris1] ;ntmode=yes isdnmode=msn incomingmsn=* controller=1 group=1 ;prefix=0 softdtmf=on relaxdtmf=on accountcode= context=entrant holdtype=local immediate=yes echocancelold=yes devices=2 Cedric Fontaine
2017 Oct 05
1
dealing with a messy dataset
...ters to the read_fwf function to read in the data. > > Jim Holtman > Data Munger Guru > > What is the problem that you are trying to solve? > Tell me what you want to do, not how you want to do it. > > > On Thu, Oct 5, 2017 at 11:02 AM, jean-philippe > <jeanphilippe.fontaine at gssi.infn.it> wrote: >> dear Jim, >> >> Thanks for your reply and your proposition. >> >> I forgot to provide the header of the dataframe, here it is: >> ================================================================================ >> Byte-by-byte...
2017 Oct 05
3
dealing with a messy dataset
...2. 4 MESSIER031 2 4 1.75 Cheers, thanks again Jean-Philippe On 05/10/2017 16:49, jim holtman wrote: > start <- c(1, 20, 35, 41, 44, 48, 53, 59, 64, 69, 75, 77, 82, 87, > + 92, 114, 121, 127) > > read_fwf(input, fwf_widths(diff(start))) -- Jean-Philippe Fontaine PhD Student in Astroparticle Physics, Gran Sasso Science Institute (GSSI), Viale Francesco Crispi 7, 67100 L'Aquila, Italy Mobile: +393487128593, +33615653774
2017 Oct 05
0
dealing with a messy dataset
...eader information to create the correct parameters to the read_fwf function to read in the data. Jim Holtman Data Munger Guru What is the problem that you are trying to solve? Tell me what you want to do, not how you want to do it. On Thu, Oct 5, 2017 at 11:02 AM, jean-philippe <jeanphilippe.fontaine at gssi.infn.it> wrote: > dear Jim, > > Thanks for your reply and your proposition. > > I forgot to provide the header of the dataframe, here it is: > ================================================================================ > Byte-by-byte Description of file: lvg_ta...
2007 Mar 09
6
R and clinical studies
Does anyone know if for clinical studies the FDA would accept statistical analyses performed with R ? Delphine Fontaine
2007 Nov 03
2
R validation
...scripts are indispensable to convince our top management, our clients and regulatory bodies. If validation documentation or scripts do not exist or are not available, could anyone tell me in concrete terms which are the minimum requirements to validate R functions or packages ? Thanks ! Delphine Fontaine Delphine Fontaine Statistician Data & Statistics Department - Genexion SA ------------------------------------------------------------ 29, Quai du Mont-Blanc Geneva, CH-1201 Switzerland ------------------------------------------------------------ Office: +41 22 704 32 44 Fax: +41 22 704 32...
2020 Apr 03
4
Mounting CIFS shares on C8
...gt; -o username=plex,password=plex,domain=DERWAEL,ro,auto,vers=3.0 > > Regards, > Simon > > _______________________________________________ > CentOS mailing list > CentOS at centos.org > https://lists.centos.org/mailman/listinfo/centos > -- Patrick Derwael Rue de la fontaine, 3 4210 Burdinne T?l:+32.(0)479.80.50.79
2017 Oct 05
0
dealing with a messy dataset
...2.4 # ... with 3 more variables: X15 <chr>, X16 <dbl>, X17 <dbl> > Jim Holtman Data Munger Guru What is the problem that you are trying to solve? Tell me what you want to do, not how you want to do it. On Thu, Oct 5, 2017 at 10:12 AM, jean-philippe <jeanphilippe.fontaine at gssi.infn.it> wrote: > dear R-users, > > > I am facing a quite regular and basic problem when it comes to dealing with > datasets, but I cannot find any satisfying answer so far. > I have a messy dataset of galaxies like that : > > And XVIII 000214.5+450520...
2006 Jun 10
2
R usage for log analysis
Hello, Is there any software project that uses R to do log file analisys? thanks gabi
2017 Jun 15
1
draw stripes in a circle in R
...#39;t see a question. If your question is whether R supports pattern fills, AFAIK it does not. If that is not your question, ask one. >>> -- >>> Sent from my phone. Please excuse my brevity. >>> >>> On June 14, 2017 7:57:41 AM PDT, jean-philippe <jeanphilippe.fontaine at gssi.infn.it> wrote: >>>> dear R users, >>>> >>>> I would like to fill a circle with yellow stripes instead of a uniform >>>> yellow color. To draw the circle I used the following command after >>>> having loaded the (very nice !) p...
2017 Jun 14
1
[FORGED] Re: draw stripes in a circle in R
...#39;t see a question. If your question is whether R supports pattern fills, AFAIK it does not. If that is not your question, ask one. >>> -- >>> Sent from my phone. Please excuse my brevity. >>> >>> On June 14, 2017 7:57:41 AM PDT, jean-philippe <jeanphilippe.fontaine at gssi.infn.it> wrote: >>>> dear R users, >>>> >>>> I would like to fill a circle with yellow stripes instead of a uniform >>>> yellow color. To draw the circle I used the following command after >>>> having loaded the (very nice !) p...
2017 Jun 14
2
draw stripes in a circle in R
...alpha("red",0.4), border = NA) par(new=T) draw.circle(-12.85,-10.9,0.85,nv=1000,border=NULL,col="yellow",lty=1,lwd=1) dev.off() It looks a bit ugly since they are not real data, but it is the simplest MWE example that I found. Thanks, best Jean-Philippe -- Jean-Philippe Fontaine PhD Student in Astroparticle Physics, Gran Sasso Science Institute (GSSI), Viale Francesco Crispi 7, 67100 L'Aquila, Italy Mobile: +393487128593, +33615653774