Displaying 20 results from an estimated 2000 matches similar to: "Naming Conventions"
2008 Feb 11
4
R programming style
I am aware of one (unofficial) guide to style for R programming:
http://www1.maths.lth.se/help/R/RCC/
from Henrik Bengtsson.
Can anyone provide further pointers to good style?
Views on Bengtsson's ideas would interest me as well.
David Scott
_________________________________________________________________
David Scott Department of Statistics, Tamaki Campus
The University of Auckland,
2005 Apr 01
2
programming conventions
I'm trying to make my R scripts more readable by others, so I searched for
some R programming conventions and found the following two:
- http://www.ci.tuwien.ac.at/Conferences/useR-2004/Keynotes/Maechler.pdf
- http://www.maths.lth.se/help/R/RCC
the latter being quite extensive. Are there some other sources that might
be useful?
Thanks in advance,
--
Sebastian P. Luque
2008 Aug 27
2
coding rules
Dear all,
I am organizing a set of specific R code as package (to ease the
documentation and deployment of it to users).
Before doing so, I would like to know if there are written coding rules
for R (with functions, objects naming convention for example).
Thanks a lot,
Thomas
--
-------------------------------------------------------------
Thomas LOUBRIEU
IFREMER IDM/ISI
BP70
29280
2012 Jun 07
2
¿Reglas de estilo para código en R?
Hola:
Me suena algo de que el año pasado alguien dijo algo sobre unas
sugerencias de reglas de estilo para escribir código en R.
No he oído nada más en esta lista (a lo mejor se me ha pasado por alto)
Ayer se publicó un mensaje sobre esto precisamente en un blog en inglés:
http://pairach.com/2012/06/06/r-style-guide/ (copiado debajo para
facilitar la lectura y comentarios en esta lista)
2009 Mar 25
5
histogram plots with many different samples
Dear R users,
I would like to draw some histograms as seen in the page whose address I
wrote below. I searched through the web a lot and I found a page which
describes how I can do it for older versions of R. For newer versions they
recommend to install the package R.basics in R.clusters but this does not
exist. The address of the web page is
http://www1.maths.lth.se/help/R/plot.histogram/
2011 Jun 10
2
R program writing standard/practices
Dear Experts,
I notice that there are different ways of writing programs. Was wondering if
there is anything like a standard which could be used to write good/complete
R programs, maintain quality, easy to debug, a standard/practice that can be
consistent in an enterprise environment. Also, are there any beacon lights
that could help navigate through lines of code, programming styles,
understand
2009 Jul 17
1
Help with R.oo
Hi! I'm trying to learn about object oriented R, as it seems like it
would be very useful.
I'm going over an example from the documentation, and I'm very confused:
http://www1.maths.lth.se/help/R/R.oo/
[assume you've called library (R.oo)]
setConstructorS3("SavingsAccount", function(balance=0) {
if (!is.numeric(balance) && length(balance) != 1)
2023 Jul 28
1
check_account: Failed to find local account with UID" issue / The university of Chicago
On Fri, 2023-07-28 at 19:55 +0000, Himanshi Yadav via samba wrote:
> Jul 28 09:18:51 midway3-dm1.rcc.local winbindd[1056745]:??? #15 /lib64/libtevent.so.0(tevent_common_loop_immediate+0x27) [0x7fbf521f6ca7]
> Jul 28 09:18:51 midway3-dm1.rcc.local winbindd[1056745]:??? #16 /lib64/libtevent.so.0(+0xed2f) [0x7fbf521fcd2f]
> Jul 28 09:18:51 midway3-dm1.rcc.local winbindd[1056745]:??? #17
2010 Nov 05
1
Una guía de estilo para programar en R...
Hola,
He seguido con interés el mensaje de Carlos sobre la guía de estilo para
programar en R aparecida en Google y las reacciones que ha generado.
En líneas generales creo que la guía Google es bastante floja, estoy de
acuerdo con la mayoría de comentarios iniciales de Carlos y en particular
con el hecho de que no trata en absoluto (ni lógicamente promueve) la
creación de packages. Otro
2004 Oct 02
1
RCC compatibility patch
Would you consider the following patch to eval.c to allow compatibility
with RCC? (It's in the applyClosure function.)
@@ -432,6 +432,14 @@
SEXP f, a, tmp;
RCNTXT cntxt;
+#ifdef RCC
+ SEXP comp;
+ PROTECT(comp = getAttrib(op, install("RCC_CompiledSymbol")));
+ if (comp != R_NilValue) /* compiled version exists */
+ op = comp;
+ UNPROTECT(1);
+#endif
2006 Jan 30
5
Help with R: functions
Hello R-users
I am new to R and trying to write some functions. I have problems writing functions that takes a data set as an arguement and uses variables in the data. I illustrate my problem with a small example below:
sample data #------------------
visual24<-rnorm(30,3,5)
visual52<-rt(30,7)
dats<- data.frame(cbind(visual24,visual52))
remove(visual24, visual52)
2023 Jul 28
1
check_account: Failed to find local account with UID" issue / The university of Chicago
Hi Experts,
We encountered a weird issue after restarting the server. Seems everything working fine on the configuration side but the user?s not able to authenticate with the Samba server. Can you please help to investigate the issue?
Our setup details and configuration file + error logs + service status.
Samba:- 4.18.3-0
CentOS Linux release 8.4.2105
Authentication mechanism is SSSD
[root at
2011 Jan 12
1
Problems with fsck
Hi List,
i'd like to share with you what happened yesterday.
Kernel 2.6.36.1
ocfs2-tools 1.6.3 (latest).
I had an old OCFS2 partition created with a 2.6.32 kernel and ocfs2
tools 1.4.5.
I unmounted all partitions on all nodes in order to enable discontig-bg.
I then used tunefs to add discontig-bg, inline-data and indexed-dirs.
During indexed-dirs tunefs segfaulted and since then, fsck
2003 Sep 26
2
checking generic/method consistency
Hi,
I wrote a package for linear programming and want to submit it to CRAN.
Since the package 'quadprog' has a function with the name 'solve.QP' to
perform Quadratic Programming, I named my (main) function 'solve.LP'.
However 'R CMD check' gives one warning:
* checking generic/method consistency ... WARNING
solve:
function(a, b, ...)
solve.LP:
2012 Mar 19
2
fitted values with locfit
Dear memberships,
I'm trying to estimate the following multivariate local regression model using the "locfit" package:
BMI=m1(RCC)+m2(WCC)
where (m1) and (m2) are unknown smooth functions.
My problem is that once I get the regression done I cannot get the fitted values of each of this smooth functions (m1) and (m2). What I write is the following
library(locfit)
data(ais)
2020 Mar 08
6
System Time
A few years ago, one of our interns was curious about system
time keeping features in computer systems.? This intern was
also the proud owner of an inexpensive Radio-Controlled Clock.
The intern wondered why computer motherboards were not just
equipped with a chip like the ones in the RCC so that their
system time would always be correct.
I posted a question about this on the CentOS email list
2005 Feb 06
3
Re : TC GUI or graphs?
Deepak, i think you can look to this option too :
http://sourceforge.net/projects/rcc/
The project is in developpment....but within 1 or 2 weeks i think it
will be a good project....especially who linux network''s owner.
rgds,
Erwan le Doeuff
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO:
2013 May 02
1
dns entries look weird in remote administration dns tool
Hi,
On our samba 4 testserver we inserted the dns records from our dns
server using samba-tool. Everything seems to work ok but when I look at
the dns
entries with the windows dns remote administration tool it all looks
very weird. Here's an example:
This is the insert command:
samba-tool dns add samba4.example.com example.com www1 A 192.168.0.120
-U administrator
When I query the dns
2009 Nov 04
1
Personal invitation from daminda edirisinghe
If you are not able to click these links, click the following: ??Show content?? and try again.
E-mail sent 11/4/2009 2:00:04 AM, by daminda edirisinghe:
Hello,
dada
Finally, a smart and simple way to manage your contacts!
With UNYK, I put all my contacts together in <b>one address book</b> that is <b>automatically updated</b>. One of my contacts changes his or her
2007 Feb 22
3
3.0.4-1 domU start problem
Hello,
I made upgrade from 3.0.2-2 to 3.0.4-1.
I can''t start more than one domUs concurently.
for example:
I had 3 domUs called www1, www2, www3.
I can start www1 and it works fine. Next I start www2 and server
go immediately for reboot.
I can start www2 and it works fine. Next I start www3 and server go for reboot.
...
What''s happened in 3.0.4-1 ?
Thank''s
Dusan