search for: ajrs

Displaying 20 results from an estimated 53 matches for "ajrs".

Did you mean: airs
2000 Nov 14
1
RE: Gnuserv, NTEmacs, Windows 2000 and R
The following becomes more and more a topic for an R mailing list, possibly R-devel. R for Windows crashes are important and should be discussed and debugged with the experts -- which are not reading ESS-help AFAIK. Martin >>>>> "ColCun" == Cunningham, Colin A <colin.a.cunningham@intel.com> writes: ColCun> In my very brief exposure to R, I have
2005 Jan 07
4
Any plans for commenting out region via something like " /* */ "?
Greetings from Switzerland! Are there any plans/initiatives/considerations in future versions of R for commenting out regions via something like " /* */ "? (I've got an application for which something like that would be useful; if not, there are less simple solutions). best, -tony "Commit early,commit often, and commit in a repository from which we can easily roll-back
2006 Jul 05
2
Editors which have strong/solid support for SWeave?
Greetings! I have a few colleagues who like the idea of Sweave, but have failed to become enlightened monks of the One True Editor (http://www.dina.dk/~abraham/religion/) Are there any other Microsoft-centric editors or IDEs which have solid support for writing SWeave documents (dual R / LaTeX enhancements similar to ESS's support)? Has anyone tried the folding editors which support Noweb?
2019 Apr 16
3
PROBLEMAS NOMBRES DE COLUMNAS CON ESPACIOS CONEXION R-SQL
Buenas tardes, Estoy tratando de realizar un update en SQL desde R: sqlUpdate(conexion1, data.frame(AUXILIAR), tablename = "AUXILIAR") y me devuelve el siguiente error: *Error in sqlUpdate(conexion1, data.frame(AUXILIAR), tablename = "AUXILIAR", : * * data frame column(s) Corteoptimo Cortediario not in database table* El problema es que sí existen esas columnas en SQL pero
2005 Dec 29
1
reinventing the wheel....
> ---------- Forwarded message ---------- > From: Byron Ellis <ellis at stat.harvard.edu> > If we wanted to be truly radical we'd just accept that graphics > devices and event loops are just special cases of the connection and > merge the whole thing, thus more-or-less reinventing CLIM. :-) Eventually, all programming languages grow up and become Lisp. (progress,
2000 Oct 17
3
"wizard" for building R-packages...
Suppose one wanted to build an R wizard for packaging... One would need to specify and create: package-name/ package-name/Description package-name/INDEX package-name/R/ package-name/man/ package-name/src/ >From this, we'd "probably" like to: - script-up the Description - provide a script for regenerating INDEX by calling out to the
2005 Oct 04
1
more problems when using "installWithVers"
R-devel, SVN revision 35729 (this morning, euro-time) So far, I'm having awful luck with the "installWithVers" flags. Recent example: I can install.packages("lattice", installWithVers=TRUE) successfully (no errors, at least it looks like a successful install), but can't load it: Error in library.dynam(pkg,pkg,lib) : shared library 'lattice_0.12-7' not found
2006 Apr 18
1
Embedding, core dumps, etc.
Well, nothing has changed in the issues that I brought up earlier, except that I can confirm core dumps in non-threaded lisps as well (CLISP), using svn version 37840 (this morning, Seattle time) for R-2-3-patches. I've not tried Thomas' suggested fixes, as I'm hesistant to go down the road of fixing R in such a way that would require constant patching. (so for those counting,
2006 Apr 11
4
Stack checking, core dumps, and embedding R
I will say this first -- I can't copy/paste the error message from the screen, so it's being retyped. Errors might occur. SORRY. I've been experiencing some interesting stack warnings recently when moving from R 2.2.x to the R 2.3.0 series and the R 2.4.0 series. In particular, I'm getting warnings of "Error: C stack usage is too close to the limit" before
2010 Apr 28
1
Xen 4.0.0 pvops 2.6.31version 64 bit cannot install gplpv on a win2k3 server 32 bit
Hi everybody, I wanted to test the new hypervisor Xen 4.0.0 with the pvops kernel 2.6.31.13 version 64 bit No concerns regarding the compilation and installation, but after install a Windows 2003 server 32 bit I can''t install the drivers gplpv_2003x32_0.11.0.213.msi i had an error: "There is a problem with this Windows Installer package" see attachment Before, i had the
2005 Dec 29
1
S4 classes: referencing slots with other slots
For those who suggest other ways to do this, I ALREADY HAVE ANOTHER DESIGN SOLUTION, DESCRIBED AT THE END. That being said, I want to know if it's possible to reference a slot in an S4 class from another slot, i.e. I'd like to have the "self.*" semantics of Python so that I can reuse a slot. That is, for various reasons it would be nice to be able to do something like:
2013 Sep 27
3
gráficos de cotizaciones
Buenos días: Me gustaría representar gráficamente datos horarios de temperaturas máximas, medias y mínimas. Hasta ahora he utilizado los gráficos de cotizaciones de Excel, ¿podría hacer algo similar con R?. En ggplot2 he visto los gráficos ribbon pero creo que no son lo que necesito ya que necesitan una especie de intervalo de confianza y yo lo que tengo son datos puntuales con su máxima y su
2005 Jul 20
5
Chemoinformatic people
Dear colleague, Just an e-mail to know if they are people working in the field of chemoinformatic that are using R in their work. If yes I was wondering if we couldn't exchange tips and tricks about the use of R in this area ? Best regards Fred Ooms [[alternative HTML version deleted]]
2013 Sep 27
1
gráficos de cotizaciones
...podría ser > utilizar un boxplot y representar la distribución completa de las > temperaturas que tienes en el día... > > Si te convence la idea, aquí tienes un ejemplo con el código disponible > (bajo el punto > A simple boxplot using ggplot2) > > http://www.sr.bham.ac.uk/~ajrs/R/r-gallery.html > > Saludos, > Carlos Ortega > www.qualityexcellence.es > > > El 27 de septiembre de 2013 13:20, vanessa tobar > <vanesatobar@yahoo.com>escribió: > > > Buenos días: > > > > Me gustaría representar gráficamente datos horarios de tem...
2005 Jan 07
6
Compilation of R code
Hello, I'm a newbie on this list. I have a R code but its execution take a very long time. Is it possible to compile it (in C for example) to decrease the execution time ? -- ---------------- Alexandre DEPIRE INRETS / GARIG
2005 Jan 07
6
Compilation of R code
Hello, I'm a newbie on this list. I have a R code but its execution take a very long time. Is it possible to compile it (in C for example) to decrease the execution time ? -- ---------------- Alexandre DEPIRE INRETS / GARIG
2005 Apr 20
5
Overloading methods in R
(1) It seems to me that, generally, in R it is not possible to overload functions. Is that right? (2) Assuming that the above is true, or partially true, is there any extra packages to handle overloading in R? (3) Assuming (1) is TRUE and (2) is FALSE, can anyone provide some advice on developing some function that understand what the arguments are and then calls the right overloaded
2010 Dec 10
0
Statistics and Bioinformatics Positions, Novartis Molecular Diagnostics, Cambridge MA USA and Basel, Switzerland
Dear all - My group at Novartis is looking for statisticians, bioinformaticians, or R programmers to support molecular diagnostics, with open positions in Cambridge MA, USA (priority) and in Basel Switzerland (possible). We do a range of data analyses across product lifecycle (research, tech dev, clin dev, market access) to support the development of prognostic and
2001 Nov 29
1
installing packages from CRAN, is this approach stupid?
In order to quickly install lots ("all") of CRAN packages on a nice new machine here, I did the following: install.packages(CRAN.packages()[,1]) 1. Is this sensible (other than the obvious, "who needs everything"?) 2. Should this be made easier to do (added as a possible option)? best, -tony -- A.J. Rossini Rsrch. Asst. Prof. of Biostatistics U. of Washington
2005 Jan 11
1
Ess packages for Suse-9.2 available ?
Hi, I've just managed to install R on Suse-9.2. Unfortunately there seem to be no Ess packages in Suse distri available. Doesn't seem like that Suse is ever to integrate these packages (since 2000)!? Are there any precompiled binaries around? So far I haven't been lucky to find any of them on rpmfind and similar sites. Maybe someone has already Ess binary for Suse-9.2 and is willing