search for: eg

Displaying 20 results from an estimated 11970 matches for "eg".

Did you mean: reg
2014 Oct 03
2
[LLVMdev] Weird problems with cos (was Re: [PATCH v3 2/3] R600: Add carry and borrow instructions. Use them to implement UADDO/USUBO)
...0000msec" "GPU lockup (waiting for 0x00000000001023cf last fence id 0x00000000001023ce on ring 0)" although the actual test results follow the same result as before (random failures mostly in float8/16 tests). I can even get test pass with hang on every subtest Using SIGN_EXTEND_INREG instead of "SUB 0" in this patch gets rid of the hangs, and makes the failures fully reproducible in every subtest, triggered on the first occurrence of what should have been -0.925879. the GPU is AMD TURKS (HD 7570 1002:675d) I tried digging throught he manual but it oly mentions that...
2004 Feb 10
1
Problem with groupmap
Hi, I recently changed the domain name of a Samba 3.0 PDC. the groupmap list has duplicate entry. Output of "net groupmap list" System Operators (S-1-5-32-549) -> -1 Replicators (S-1-5-32-552) -> -1 Guests (S-1-5-32-546) -> -1 Domain Guests (S-1-5-21-710777483-87660309-4190662462-514) -> nobody Domain Admins (S-1-5-21-2549707708-1625086035-54168507-512) -> -1 Domain
2012 Dec 06
2
function to filter identical data.fames using less than (<) and greater than (>)
Esteemed UseRs, I've got many biggish data frames which need a lot subsetting, like in this example: # example eg <- data.frame(A = rnorm(10), B = rnorm(10), C = rnorm(10), D = rnorm(10)) egsub <- eg[eg$A < 0 & eg$B < 1 & eg$C > 0, ] egsub egsub2 <- eg[eg$A > 1 & eg$B > 0, ] egsub2 # To make this clearer than 1000s of lines of extractions with [] # I tried to make a functio...
2013 Mar 08
4
Substitute value
Hi, I have a large data frame and within this there is one column which contains individual codes (eg. 1.1234.2a.2). I am splitting these codes into their 4 components using strsplit (eg. "1", "1234", "2a", "2"). However there are some individual codes which do not have a last component (eg. 2.4356.3b. ), I want to give these codes a "1" as their...
2005 Jun 14
0
bug in rpart?
Dear R-helpers, Can you help me to see why "code 1" gives error while "code 2" runs fine? The only difference in the data is the distribution of age categories. I am attaching the session after the code. Many thanks. XL library(survival) library(rpart) # code 1 n <- 20 age <- rep(1:3, c(2, 3, 15)) eg<- data.frame(rexp(n), rbinom(n,1,prob=.3), age=age) names(eg) <- c("surv", "status", "ag...
2011 Jun 09
2
Calculating a mean based on a factor range
...lumn (e.g. interested in 5m, 10m and 20m depth position only). The issue was that these measurement were taken with the instrument hanging off the side of a boat so a big enough wave moved the instrument such that it recorded a slightly different depth. For my purposes, however, this difference is negligible and I wish to consider all those different readings at close depth as a single depth. So for example: > library(ggplot2) > > eg <- read.csv("http://dl.dropbox.com/u/1574243/example_data.csv", header=TRUE, sep=",") > ## Calculating an average value from al...
2010 Oct 05
2
ow to force samba to allow write specified filename to folder
Hello I have directories named as the names of years eg. 2009 2010 etc. And in this folders eg. 2009 folder there are scanned .tif files like this: 10_09.tif 229_09.tif 3890_09.tif 3890_1_09.tif etc. I would like to samba check correct filenames eg. in folder 2010 there shouldn't be any flies from xxxx_09.tif eg. 229_09.tif only 229_10.tif (_...
2006 Oct 27
1
Using data and subset arguments in user-defined functions
Dear list, A while ago, I posted a question asking how to use data or subset arguments in a user-defined function. Duncan Murdoch suggested the following solution in the context of a data argument: data <- data.frame(a=c(1:10),b=c(1:10)) eg.fn <- function(expr, data) { x <- eval(substitute(expr), envir=data) return(mean(x)) } eg.fn(a,data) I've tried various approaches to add a subset argument to the example above, but no luck. I'm looking for something like the following (but that w...
2003 Jul 08
2
NLME Fitted Values
Dear List: I am having difficulties with the fitted values at different levels of a multilevel model. My data set is a series of student test scores over time with a total of 7,280 observations, 1,720 students nested witin 60 schools. The data set is not balanced. The model was fit using eg.model.1<-lme(math~year, random=~year|schoolid/childid, data=single). When I call the random effects at all levels using EB.1<-data.frame(ranef(eg.model1, level=1)) and EB.2<-data.frame(ranef(eg.model1, level=2)), I get the shrinkage estimators that I expect. That is, I get 2 random ef...
2007 Jun 21
2
Server 1.0.1 migration: Maildir : UID inserted in the middle of mailbox
Hello all, Since a migration from dovecot 1.rc16 to Dovecot 1.0.1 + new server, every day I have a lot of errors like this : Jun 21 17:42:34 dovecot1 deliver(damien.chambe at egs-gestion.fr): msgid=<467A9B3E.5070605 at egs-gestion.fr>: saved mail to INBOX Jun 21 17:42:34 dovecot1 postfix/pipe[10242]: 92DD11FA8B: to=<damien.chambe at egs-gestion.fr>, relay=dovecot, delay=0, status=sent (egs-gestion.fr) Jun 21 17:42:34 dovecot1 postfix/qmgr[2724]: 92DD11FA8B: rem...
2019 Jun 21
2
Suggested Patch: Library returns matching installed packages when typo present
Dear R-core devs, I hope this email finds you well. Please see the proposed patch to R-devel below: Scenario: When loading a package using `library`, a package may not be found if the cases are not matching: ``` > library(ORG.Hs.eg.db) Error in library(ORG.Hs.eg.db) : there is no package called 'ORG.Hs.eg.db' ``` Suggested Patch: Returns a message matching what `install.packages` returns in such situations: ``` > library("ORG.Hs.eg.db") Error in library("ORG.Hs.eg.db") : there is no p...
2007 Aug 16
1
use AnnBuilderSourceUrls with local path insted of ftp adress
...nnBuilderSourceUrls to collect data from different ftp sites. These data are not complete for my organism, so I would like to change the ftp adresses to a local one. The changing itself is working but when I run the script I get the following Error: Error in loadFromUrl(file.path(sourceURLs[["EG"]], "gene2go.gz")) : URL /path/to/file/gene2go.gz is incorrect or the target site is not responding! The full code of the script is this: library(AnnBuilder) list<-options("AnnBuilderSourceUrls") list$AnnBuilderSourceUrls$EG<-"/path/to/file/" options(&q...
2016 Dec 20
0
[ANNOUNCE] nftables 0.7 release
...The nft tool provides a native translation for iptables extensions (if available). * Add new fib expression, which can be used to obtain the output interface from the route table based on either source or destination address of a packet. This can be used to e.g. add reverse path filtering, eg. drop if not coming from the same interface packet arrived on: # nft add rule x prerouting fib saddr . iif oif eq 0 drop Accept only if from eth: # nft add rule x prerouting fib saddr . iif oif eq "eth0" accept Accept if from any valid interface: # nft add rule x prerouti...
2018 Jul 12
2
Syntax for FileCheck numeric variables and expressions
Hi all, I've written a patch to extend FileCheck to support matching arithmetic expressions involving variable [1] (eg. to match REG+1 where REG is a variable with a numeric value). It was suggested to me in the review to introduce the concept of numeric variable and to allow for specifying the base the value are written in. [1] https://reviews.llvm.org/D49084 I think the syntax should satisfy the below requireme...
2011 Feb 03
0
R: mpirun .C and R
...e doMPI commands. i.e. outs=.C("prog1", all of the args ) executes correctly if one uses a loop. When I try and use doMPI i get the following errors: Error in { : task 1 failed - "C symbol name "prog1" not in load table" Calls: %dopar% -> <Anonymous> eg.r code ---------------------------------------------------------------------------------------------------- library(doMPI) cl <- startMPIcluster(count=2) #this will be changed later registerDoMPI(cl) #the input parameters! ... #some vecs and matrices for the C program ......
2020 Oct 28
2
odd issue with permisions
On 10/28/2020 3:31 AM, Marco Gaiarin via samba wrote: > Mandi! Dan Egli via samba > In chel di` si favelave... > >> Why on earth would samba even CARE about group permissions when user >> permissions are perfectly fine? Help me fix this? > Consider that, if POSIX ACL are enabled on this FS, the group > permission are considered as a 'mas...
2007 Dec 07
5
Grouping by interval
Hello, I have a dataframe of say 20 lines with one line per individual. I want to group these 20 individuals by length class (eg. of 5cm) and get the mean value of all the other variables (eg VarA and VarB) for each length class My dataframe is as follow: Length <- 10:30 VarA <- seq(1000,1200,10) VarB <- seq(500,700,10) Data <- cbind(Length,VarA,VarB) And I want to get something like: Length Class Mean...
2009 Nov 23
3
Trellis Plot
anyone know how to add text in the Trellis plot panel ?? i want to add things eg: dot dot dot. in the headrer of the panel. eg: http://old.nabble.com/file/p26486579/hist1.png hist1.png -- View this message in context: http://old.nabble.com/Trellis-Plot-tp26486579p26486579.html Sent from the R help mailing list archive at Nabble.com.
2006 May 08
1
ob.step$anova interpretation
hello I built logistic regression model. To model check I used stepAIC. But I don't know how it is interpreted . I could not any find any explanation about it For instance which model is preferable ? What are the critarias to choose beter model I will appreciate if you give me an explanation ? models --------- > l...
2017 Oct 30
2
Password change question/2: 'syncpassword' suffices on *ONE* DC?
I'm forced, for legacy reasons, to use 'syncpassword'. Docs are scarce, so i ask here. Seems to me that the ''consumer'' (eg, 'samba-tool user syncpasswords', with or without '--daemon') get activated after every password change, indipendently on what DC get originated (eg, i&...