similar to: is there an equivalent for #ifdef (C langage) in R

Displaying 20 results from an estimated 200 matches similar to: "is there an equivalent for #ifdef (C langage) in R"

2005 Jan 12
0
changing langage [SOLVED]
To all that replied, thanks... I have a clue where I can change the settings. tnx, Kurt Sys >----- Oorspronkelijk bericht ----- >Van : Gabor Grothendieck [mailto:ggrothendieck at myway.com] >Verzonden : woensdag , januari 12, 2005 05:26 PM >Aan : r-help at stat.math.ethz.ch >Onderwerp : Re: [R] changing langage > >Kurt Sys <kurt.sys <at> pandora.be> writes:
2007 Apr 16
1
langage R
bonjour, je vous écris pour savoir si vous aviez trouver réponse pour l'écriture du test de Newman & Keuls sous R car j'en ai aussi besoin merci encore cordialement. --------------------------------- [[alternative HTML version deleted]]
2007 Apr 16
0
Multiple comparisons: was Re: langage R
See library(multcomp) and ?glht ?contrMat for several procedures for multiple comparisons. The Newman Keuls test is not on the list. The related Tukey method is on the list.
2007 Oct 28
5
Help for Beginner!!
Léandre BASSOLE PhD Student CNRS-CERDI 65 Bd Francois Mitterrand Boite Postale 320 63009 Clermont-Ferrand CEDEX 1 FRANCE Tel : +33 4 73 17 74 45 Fax : +33 4 73 17 74 28 ----- Forwarded Message ---- From: Leandre Bassole <leandrebassole@yahoo.co.uk> To: r-help@r-project.org Sent: Saturday, 27 October, 2007 8:41:05 PM Subject: Hi all!! I am a new user of R. I am very familar to Stata, but
2003 Dec 10
3
How to calculate standard error for a vector?
Hi all! I 'm beginner and i develop a bio-application with VB and i need some statistic functions! could i calculate StdError, CoeffOfVariance, SumSquared with R langage? if yes, what are functions to use? I need also to use ANOVA and t-test... Thanks for your help! Laurent Houdusse Analyste Programmeur
2010 Feb 15
3
executable R script under xp (to avoid migration toward Matlab or C++)
Hello, I discovered R two years ago and thanks to the R-community I managed to write some scripts to analyze my data stored in mysql databases. The only problem is that I am the only one using R in the lab. Colleagues mainly use Matlab (but not with mysql, only with text files) but regularly come to me to get data treated with R-scripts !!!. To allow the use of my scripts by other people, my
2002 May 02
2
a question
Hi, I have a program written in R which is good on the version 1.2, but for the fallowing versions of R, an error always is at the same place. That is at the level of the fallowing line: Sur<- getInitial(res2[m:M,2]~SSasymp(res2[m:M,1],Asymp,resp0,lrc),data=res2) Error in eval(expr,envir,enclos):numeric envir arg not of length one I don't know at all this langage for the instant.
2008 Jun 18
2
Simple decoder (keyframe only) implementation ?
Hello everybody ! I am working on a php class to enable, on the server-side, to extract useful data from Ogg theora videos. http://opensource.grisambre.net/ogg . I need to have it extract a thumbnail picture from a video (much like dailymotion or youtube). Right now, I am doing it using the ffmpeg-php extension (for picture extraction only), but the problem is that this module is available on
2006 Jan 31
2
Announce: Contributed Documentation
[Version fran??aise plus bas] To the R community, A quick word to announce the publication of my document "Introduction ?? la programmation en S". It is available in the French section of the Contributed Documentation page of CRAN. Many of the documents or books currently available on S-Plus and/or R present the software in a statistical analysis context. My document rather focuses
2009 Oct 19
1
speech spectogram
Hi, I need to plot a spectogram for a speech signal. Is there a package that can do this? -- Rajesh.J [[alternative HTML version deleted]]
2010 Jan 04
2
spectrogram
Hi, I need to plot spectrogram of a waveform.What package offers this? -- Rajesh.J [[alternative HTML version deleted]]
2008 Sep 04
0
[LLVMdev] missed optimizations
Nuno Lopes a écrit : > Hi, > > I have two questions about optimizations performed by llvm. > > Consider these simple functions: > int x(int b) { return b?4:6; } > int y() { return x(0); } > > int x2() { return 5; } > int y2() { return x2(); } > > the optimized bitcode (with clang + opt -std-compiler-opts) is: > define i32 @y(...) nounwind { > entry:
2001 Feb 20
1
c++
I am programming in c++ langage and I would like to call some R functions in my c++ code, is it possible ? How could I do that ? I don't undersand very well the chapter " The R api : entry points for C code" in "writing R extensions" Thank you for your help B BROCHE -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list --
2015 Sep 24
1
Guest cpuacct counters and others location
Hi, My piece of code ( C langage) uses cgroups to retrieve counters related to cpu and memory usage related to KVM guests hosted by the host where this code runs. I noticed that depending on the O.S. running on the host , these counters are not found at the same location : CentOS 7 : ls /sys/fs/cgroup/cpuacct/machine.slice/machine-qemu\\x2drhel6.0.scope/vcpu0 cgroup.clone_children
2005 May 15
3
dll not found Case sensitive?
Hello, I configure wine to use a windows partition. For this I create a symbolic link to the window partition in the dosdevices directory with ln -s /mnt/win_c c: .I changed variable in the config variable system, I put "c://windows//system32" and in the path variable also. I run winrar without problem and no problem. I run winamp and it saies dll not found so I look for these dll and
2006 Oct 02
1
Problems with graphics
Dear all, I am a SAS user, who's trying R. I am a little bit lost for graphics. What is the simplest way for plotting y as a function of x with one symbol (line or dot) for each level of a class variable z (for SAS langage= plot x*y=z). Can I add vertical bars for standard deviation stored in a separate variable (say ystd). Finally, is it possible to do all this with xyplot function
2003 Sep 12
2
[LLVMdev] LLVM for dynamic languages
How suitable do the developers think that LLVM would be as a code-generator for a dynamically typed langage? Would the lack of static type information make the traditional code optimizations performed by LLVM relatively ineffective? Sincerely, Rayiner Hashem
2008 Sep 04
5
[LLVMdev] missed optimizations
Hi, I have two questions about optimizations performed by llvm. Consider these simple functions: int x(int b) { return b?4:6; } int y() { return x(0); } int x2() { return 5; } int y2() { return x2(); } the optimized bitcode (with clang + opt -std-compiler-opts) is: define i32 @y(...) nounwind { entry: ret i32 6 } define i32 @y2(...) nounwind { entry: %call = call i32 (...)* @x2( ) ;
2006 Jun 20
4
Souffleur subtittle editor (SoC). Need Help with GStreamer
Hi, All!!! I am at last added some GStreamer support to the Souffleur, and I am already read this manuals: - http://pygstdocs.berlios.de/ - http://gstreamer.freedesktop.org/data/doc/gstreamer/head/manual/html/index.html But it's steel hard for me to understand (or maybe I something missed) how it work. :( For example: I don't know where to search info on how to load additional info on
2006 Nov 27
2
registration ip address
What is the variable like $peerip to get the registered ip address for a peer Regards ********************************************* No employee or agent is authorized to conclude any binding agreement on behalf of Xplorium with another party by e-mail without express written confirmation by an officer of Xplorium. Any views expressed by an individual in this electronic message do