similar to: gluster fuse disk state problem (reproducible )

Displaying 20 results from an estimated 800 matches similar to: "gluster fuse disk state problem (reproducible )"

2011 Jun 20
0
gluster fuse disk state problem (reproducible ), kind of solved
Turning of write-behind solves it. -- Marc Geerlings Application Manager Research Department of Radiology Maastricht University Medical Center P.O. Box: 5800, 6202 AZ Maastricht, The Netherlands P. Debyelaan 25 6229 HX,
2009 Sep 03
0
R: "biplot" graphical options?
Thanks Andris, Michael and Petr for your prompt and kind feedbacks. I will try generating my own biplot from low-level graph commands... I hope it will work. Best regards, Marco -- Marco Manca, MD University of Maastricht Faculty of Health, Medicine and Life Sciences (FHML) Cardiovascular Research Institute (CARIM) PO Box 616 6200 MD Maastricht E-mail: m.manca at path.unimaas.nl Office
2007 Aug 03
0
acts_as_paranoid and Association Extensions (has_one troubles)
Hi... Isn''t there a proper way or hack/workaround for the following? * For the example with unfortunate disabilities.. look below,,, Usage of has_* (associationmethods) do {def with_deleted AccociatedModel#with_scope} {Paranoid''s#find_with_deleted}... The has_one associations give me a nil object when invoking it with Model.association_OBJECT.with_deleted. Has_many does like
2010 Apr 19
1
Writing methods for existing generic function
Dear All, Suppose I want to write a method for the generic function confint(): > args(confint) function (object, parm, level = 0.95, ...) So, it looks like the second and third argument have been predefined in the generic function. Suppose one or several of the predefined arguments don't apply or fit (in some sense) with the design of the rest of the package. What should one do? I see
2013 Sep 15
1
FOSS licence with BuildVignettes: false
Dear All, I have been checking the metafor package against R-devel. R CMD check --as-cran metafor yields one note: FOSS licence with BuildVignettes: false Yes, I have 'BuildVignettes: FALSE' in my DESCRIPTION file. I see at http://developer.r-project.org/blosxom.cgi/R-devel/NEWS: Tue, 25 Jun 2013 CHANGES IN R-devel UTILITIES 'R CMD check --as-cran' warns about a false
2024 Oct 11
1
Error message when calling t.test() and aov() with a factor variables
Hi all, Just noticed that the error that arises when calling t.test() with factors could be a bit clearer: > t.test(factor(c(3,1,2,4,3,5,4,5)), factor(c(2,1,2,3,4,5))) Error in var(x) : Calling var(x) on a factor x is defunct. Use something like 'all(duplicated(x)[-1L])' to test for a constant vector. In addition: Warning message: In mean.default(x) : argument is not numeric or
2012 Sep 26
3
Broken Links on http://www.r-project.org
I was not sure who I should contact about this, so I am posting this here. There are a few broken links on the R website. 1) http://www.r-project.org/search.html -> link to the Nabble R Forum. I belive the correct/new URL should be: http://r.789695.n4.nabble.com/ 2) http://www.r-project.org/other-docs.html -> link to "Auswertung ?kologischer Daten". Not sure if there is a new
2017 Jun 22
1
Compiling R-devel - missing some expected features (zlib, bzlib, lzma, PCRE)
Hi All, I am compiling R-devel on Linux (Ubuntu 16.04.2) and that works just fine, but I am missing some of the expected features, as shown here: https://cran.r-project.org/doc/manuals/r-devel/R-admin.html#Linux In particular, after configure (using all defaults), I see: R is now configured for x86_64-pc-linux-gnu [...] Interfaces supported: X11 External libraries:
2012 Nov 22
2
lapack routines cannot be loaded [Help request]
Dear BioConductor and R fellow users I apologize in advance for double posting, but I am not sure which list would actually be best fit for this message. I am experiencing a weird error with my R installation on Ubuntu 10.04.4 (LTS) 64bit: When I run R on the terminal everything goes smoothly: $R R version 2.15.2 (2012-10-26) -- "Trick or Treat" Copyright (C) 2012 The R Foundation
1998 Oct 13
1
SuSe does not like more.
In R "help(package=pkg)" or "library(help=pkg)" seems to behave like 'more' or 'less' or something that looks like one of these. Under RedHat this behaves normally: at the end of help it reverts automatically to the R prompt '>'. In SuSe it doesn't jump back to the prompt automatically: I see something like "line 1/28 (end)" and then I
2009 Sep 02
4
"biplot" graphical options?
Dear R-help fellows good afternoon. I am struggling in the attempt to impose some graphical conditions (changing point symbols, colors, etc) to biplot function (I am using it to visualize the results of princomp) but I can't apparently manage to change anything but the axis... and I have been browsing manuals and vignettes without finding any explicit suggestions on how to operate... Can
1998 Apr 05
0
R-beta: loading C binaries
Can anybody explain what is happening? I am using RedHat Linux 5.0 with the latest Martyn Plummer RPM's installed, both at home and at the office. At home "survival4" is (still) working OK. At the office all the components ('survfit', 'survdiff', 'coxph, etc..) stop with an error message that they can't 'find' or 'load' the C binaries:
2010 Jan 05
1
Is the Intercept Term always in First Position?
Dear All, I have a question about formulas and model.matrix(). If one specifies a model via a formula, the corresponding design matrix can be obtained with the model.matrix() function. For example: x1 <- c(1,4,2,3,5) x2 <- c(1,1,2,2,2) myformula <- ~ x1 + factor(x2) model.matrix(myformula) My question is: If an intercept term is in the model (like in the example above), is it always
2012 Aug 01
1
"metafor" package, proportions: single groups wrt to a categorical dependent variable‏
Dear Dushanthi, Please keep your e-mails on the R-Help list, where Michael has already given you some excellent advice. As Michael already explained, metafor can handle proportions, but does not have any specific functionality for categorical variables with more than 2 levels (at the moment). So, if it is logical and possible to do so, you could collapse the levels of the categorical outcome to 2
2011 Jan 11
2
parted usage
Hello again, Been an interesting day. I'm attempting to use parted to create a partition on a 28TB volume which consists of 16x2TB drives configuired in a Raid 5 + spare, so total unformatted size is 28TB to the OS.. However upon entering parted, and making a gpt label, print reports back as follows; Model: Areca ARC-1680-VOL#000 (scsi) Disk /dev/sdc: 2199GB Sector Size
2024 Oct 11
1
Error message when calling t.test() and aov() with a factor variables
>>>>> Viechtbauer, Wolfgang (NP) writes: > Hi all, > Just noticed that the error that arises when calling t.test() with factors could be a bit clearer: >> t.test(factor(c(3,1,2,4,3,5,4,5)), factor(c(2,1,2,3,4,5))) > Error in var(x) : Calling var(x) on a factor x is defunct. > Use something like 'all(duplicated(x)[-1L])' to test for a constant vector.
1999 Aug 30
2
R --gnome segfaults on RH 6.0 with R-0.65.0
Have just compiled and installed R-65.0 on RH 6.0 with all the latest updates for RH and Gnome (including `libglade-0.3-1.i386.rpm' and `libglade-devel-0.3-1.i386.rpm' from RH ftp). R.X11 works OK. But when I try `R --gnome' I get a segmentation fault/core dump with the messages: Gdk-CRITICAL **: file gdkfont.c: line 174 (gdk_font_id): assertion `font != NULL' failed.
1999 Aug 30
2
R --gnome segfaults on RH 6.0 with R-0.65.0
Have just compiled and installed R-65.0 on RH 6.0 with all the latest updates for RH and Gnome (including `libglade-0.3-1.i386.rpm' and `libglade-devel-0.3-1.i386.rpm' from RH ftp). R.X11 works OK. But when I try `R --gnome' I get a segmentation fault/core dump with the messages: Gdk-CRITICAL **: file gdkfont.c: line 174 (gdk_font_id): assertion `font != NULL' failed.
2008 May 09
2
Stepwise regression
I am using stepAIC for stepwise regression modeling. Is there a way to change the entry and exit alpha levels for the stepwise regression using stepAIC ? Many thanks, Berthold Berthold Stegemann Bakken Research Center Maastricht The Netherlands [[alternative HTML version deleted]]
2011 Feb 09
1
samr - extract genes from siggenes.table
Hi BioC user, I have a problem extracting the gene set I would like to work with. Here is I work with my data: normData <- read.delim("normalizedData.txt",sep ="\t") ######### two class unpaired comparison # y must take values 1,2 classes <- c(-1,-2,1,2) #prepere the data for the samr analysis data.x <-as.matrix(normData[,8:11]) d=list(x=data.x,y=classes,