search for: sluqu

Displaying 16 results from an estimated 16 matches for "sluqu".

Did you mean: sluque
2005 Nov 30
3
setting R_LIBS
Hello, I'm adding a private library tree in my home directory by adding this to my ~/.Renviron: R_LIBS="~/R/library:${R_LIBS}" so that once in R: R> cat(Sys.getenv("R_LIBS"), "\n") ~/R/library:/usr/local/lib/R/site-library:/usr/lib/R/site-library:/usr/lib/R/library Is this the best way to proceed? Cheers, -- Sebastian P. Luque
2004 Feb 17
10
How to write efficient R code
I have been lurking in this list a while and searching in the archives to find out how one learns to write fast R code. One solution seems to be to write part of the code not in R but in C. However after finding a benchmark article (http://www.sciviews.org/other/benchmark.htm) I have been more interested in making the R code itself more efficient. I would like to find more info about this. I have
2005 May 17
2
cumsum on chron objects
Hi, Is there some alternative to cumsum for chron objects? I have data frames that contain some chron objects that look like this: DateTime 13/10/03 12:30:35 NA NA NA 15/10/03 16:30:05 NA NA ... and I've been trying to replace the NA's so that a date/time sequence is created starting with the preceding available value. Because the number of rows with NA's following each available
2012 Mar 14
0
diveMove 1.3.1
...enerates initial plot, after preparing Tcl/Tk widgets, to accomodate for changes in R 2.14.2. Legend is plotted only if there is at least one level in the phase factor. Cheers, -- Sebastian P. Luque, Ph.D. Department of Biological Sciences University of Manitoba http://www.ucs.mun.ca/~sluque _______________________________________________ R-packages mailing list R-packages at r-project.org https://stat.ethz.ch/mailman/listinfo/r-packages
2012 Mar 14
0
diveMove 1.3.1
...enerates initial plot, after preparing Tcl/Tk widgets, to accomodate for changes in R 2.14.2. Legend is plotted only if there is at least one level in the phase factor. Cheers, -- Sebastian P. Luque, Ph.D. Department of Biological Sciences University of Manitoba http://www.ucs.mun.ca/~sluque _______________________________________________ R-packages mailing list R-packages at r-project.org https://stat.ethz.ch/mailman/listinfo/r-packages
2005 Feb 23
1
MS Access, Endnote, among others
Hello, Has anybody been able to successfully install MS Office XP Pro in Wine? I don't care much about the whole suite, I need MS Access, but since I have a bundled cd, I don't have much choice. Apparently several folks have had similar problems in this list, and I haven't found solutions. Wine-version is 0.0.20041201-1 Debian unstable package. I'm not sure I'm starting the
2004 Feb 22
2
nested loop
Hi all, Does anybody know whether one can nest an 'if' statement in a 'for' loop. According to the results of my code, the for loop is performed first, but I'm not sure I got something else wrong with my code. I'm trying to perform the if statement for each step of the for loop. Thanks in advance. Best regards, Sebastian
2005 Apr 07
2
newline in lattice axis label
Hi, I have a 3 panel xyplot with different variables in the y axis. I'm trying to insert a newline after "Width (cm)," in the ylab argument as in the example below. My goal is to have the y axis label broken into two lines, split after the string just mentioned. plotfun <- function() { fakedf <- data.frame(A = sample(1:100, 50), B = rnorm(50),
2005 Mar 23
2
alternative to 'groups' for lattice bwplot()
Hi, Is there some alternative to the 'groups' argument in lattice's bwplot function for boxplots? Say in the example below: bwplot(yield ~ site | year, data = barley) you want to have two side by side boxplots per site, corresponding to each year in the barley data frame. Ideally, the space between boxplots of the same site should be smaller than that between boxplots of different
2006 Jul 14
2
chron vs. POSIX
...- *Footnotes* ----+ ? This is possible with POSIX classes too by using the structure() function, but a post by Brian Ripley to the effect that it may not be practical in the long term further convinced me of this. -- Sebastian P. Luque Department of Biology Memorial University of Newfoundland sluque at mun.ca
2005 Feb 22
6
rodbc or unixodbc error
Hi, I'm trying to establish a connection to a MySQL database, and am using the rodbc package for it. This is in a GNU/Debian Linux box, with the corresponding Debian unstable packages. I can login to my MySQL databases from any shell and directory, so the problem is probably not there. Here's an example of what I'm doing: R> odbcConnect("test",
2005 Jul 12
0
MS Access, Endnote, among others
I got this by email and am posting it to the list, as per the original sender's request. Thank you J.V. On Tue, 12 Jul 2005 18:08:35 +0100, "J.F. Vasconcelos" <jfvasconcelos@gmail.com> wrote: > Hi > > I've found your messages (and complaints) in Google about Wine. I've > installed Suse 9.3 in both my desktop and laptop and Wine works great > (as
2004 Oct 20
2
par() defaults in Rprofile
Dear List, I've tried to set default par() in .Rprofile by putting the following in the .First function: setHook(packageEvent("graphics", "onLoad"), function(...) {graphics::par(cex.axis=1.5, cex.lab=2, las=1)} ) My goal was to set par() defaults without opening a device everytime at startup. However, the next plot I create doesn't show these
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
2005 Apr 08
1
subset arg lmList
I'm having trouble understanding how functions in the subset argument for lmList search for the objects they need. This trivial example produces "Error in rownames(fakedf) : Object "fakedf" not found": library(nlme) fitbyID <- function() { fakedf <- data.frame(ID = gl(5, 10, 50), A = sample(1:100, 50), B = rnorm(50))
2004 Mar 23
2
Coefficients and standard errors in lme
Hello, I have been searching for ways to obtain these for combinations of fixed factors and levels other than the 'baseline' group (contrasts coded all 0's) from a mixed-effects model in lme. I've modelled the continuous variable y as a function of a continuous covariate x, and fixed factors A, B, and C. The fixed factors have two levels each and I'd like to know whether