search for: petti

Displaying 20 results from an estimated 130 matches for "petti".

Did you mean: petty
2010 Aug 10
6
How to invert a list ?
Dear list, I have a list, as follows : a <- 5 names(a) <- "a" b <- 9 names(b) <- "b" c <- 15 names(c) <- "c" x <- list("i" = a, "j" = b, "j" = c) I want to invert the list, like this : $a i 5 $b j k 9 15 I do not find a clean solution. Could anyone give me elegant ideas ? Thanks in advance, Carlos
2012 Jan 13
2
Problem Installing R to SuSE 10 via RPM
...9;m trying to install R-base 2.14.1, but it is telling me that I need R-base version 2.14.1 as a dependency. Am I using the wrong rpm for an installation starting from scratch? I got the rpm from: http://download.opensuse.org/repositories/devel:/languages:/R:/base/SLE_10/x86_64/ Thanks, Matt pettis@swat:~/bin> cat /etc/*-release SUSE Linux Enterprise Server 10 (x86_64) VERSION = 10 PATCHLEVEL = 2 pettis@swat:~/bin> uname -a Linux swat 2.6.16.60-0.34-smp #1 SMP Fri Jan 16 14:59:01 UTC 2009 x86_64 x86_64 x86_64 GNU/Linux pettis@swat:~/bin> rpm -ivh R-base-devel-2.14.1-30.1.x86_64.rp...
2012 Mar 13
0
[LLVMdev] About Implementation of Pettis-Hansen's / Gloy's Code Layout Transformation in LLVM
...as planning to implement a profile guided optimization technique in LLVM. In the open source projects list of the LLVM site; I saw "code layout" is a transformation that can be worth looking at as it will use of profiles (possibly path profiles). So I was thinking of implementing either Pettis-Hansen's (Profile guided code positioning, Pettis & Hansen) or Gloy's (Procedure Placement Using Temporal-Ordering Information, Gloy, Smith) procedure placement algorithm in LLVM because first of all I have not seen any implementation of it in LLVM till** and second, these are the cla...
2018 Aug 07
3
Regarding basic block layout/code placement optimizations of profile guided optimization (PGO)
Hi, I would like to learn the details regarding what exactly PGO does for basic block layout/code placement optimizations in llvm. Could you please point me to some descriptions? Is it close to this paper (Karl Pettis and Robert C. Hansen. 1990. Profile guided code positioning. PLDI'90) http://perso.ensta-paristech.fr/~bmonsuez/Cours/B6-4/Articles/papers15.pdf? Whether it is purely intra-procedural or include inter-procedural optimizations? Thank you so much! Best regards, Xiaowan -------------- next par...
2008 Sep 26
3
Newbie: Ranking a data frame, grouped by 2 or more columns
Hi, I'd like to rank obs in a data frame as subset by 2 or more columns... The example input would look like the following: ====+====+====+====+ x y v -- -- -- a w 200 a w 100 b w 500 b w 200 b z 300 b z 400 ====+====+====+====+ And the data frame I want to create is below: ====+====+====+====+ x y v rank -- -- -- ---- a w 200 1 a w 100 2
2007 May 30
3
http proxies: setting and unsetting
Hi, I am trying to use R at work and at home on the same computer. At work, I have a proxy, and at home, I do not. I have, for work, a User environment variable "http_proxy" which I set in the OS (Windows XP Pro). When I am at work, and I try to retrieve data from the web with 'read.csv', things work just fine. I assume it knows how to use the proxy. The trouble is when I
2010 Jul 18
5
package "plotrix"
...ot;gray3") lines(NN,McG,pch=18,col="green") lines(NN,PBJD,pch=20,col="magenta1") points(NN,GRPR,pch=18,col="cyan") abline(h=1,pch= 1,lty=1,col="black") legend("topright",legend = c("Levina-Bickel","MacKay-Ghahramani","Pettis-Bailey-Jain-Dubes","Grassberger-Procaccia","Helix Dimension"), text.width = strwidth("Pettis-Bailey-Jain-Dubes"),pch = c(19,18,20,18,1), col = c("red4","green","magenta1","cyan","black"),text.col = &quo...
2003 Dec 01
2
Re: Asterisk European Tour: was RE: * Party in Paris
>> Amsterdam!! > I had my laptop and suitcase stolen in Amsterdam the one time I went > there, after hearing someone talk about how safe a city it was over > dinner. Most importantly, also stolen was my (apparently irreplacable) > copyleft shirt (yellow/gold with large blue backwards (C) symbol on front > and GPL preamble on back) which no amount of effort has managed to
2008 Sep 24
2
print.data.frame : row.name = FALSE not having intended effect
Hi, Does anybody know if row.name = FALSE actually works in v2.6.2? Because it isn't working for me... here is some sample code and output: ====+====+====+====+====+====+====+====+====+====+ > print(x,row.names = FALSE) party_abbr candidate_name votes_candidate 2 DFL AMY KLOBUCHAR 1,278,849 5 R MARK KENNEDY 835,653 4 IP
2010 Oct 25
2
dataframe, transform, strsplit
Hi, I have a dataframe that has a column of vectors that I need to extract off the character string before the first '.' character and put it into a separate column. I thought I could use 'strsplit' for it within 'transform', but I can't seem to get the right invocation. Here is a sample dataframe that has what I have, what I want, and what I get. Can someone tell
2010 Aug 03
2
How to name matrices from a list with lapply ?
Dear list, I have a list of matrices : i1 <- matrix(1:10, nrow = 2, ncol = 5) i2 <- matrix(11:20, nrow = 2, ncol = 5) j <- list(i1 = i1, i2 = i2) I would like to attribute names to each dimension, for each matrix, as follows : $i1 B1 B2 B3 B4 B5 A1 1 3 5 7 9 A2 2 4 6 8 10 $i2 B1 B2 B3 B4 B5 A1 11 13 15 17 19 A2 12 14 16 18 20 However, I have to use lapply function and attribute
2010 Mar 05
3
How to match vector with a list ?
Dear list, I have a vector of characters and a list of two named elements : i <- c("a","a","b","b","b","c","c","d") j <- list(j1 = c("a","c"), j2 = c("b","d")) I'm looking for a fast way to obtain a vector with names, as follows : [1] "j1" "j1"
2008 Sep 25
2
Equivalent of 'first.var' or 'last.var' from SAS in R?
Hi, I want to sort a data frame by multiple columns and then take the first record in each unique level of the "by" group I used to sort the data frame. Does someone have an example of how to do this? Thanks, Matt -- It is from the wellspring of our despair and the places that we are broken that we come to repair the world. -- Murray Waas
2010 Feb 15
1
FIPS186-3 and NIST SP800-57 support
...0-57, DSA key length could be greater than 1024 bytes (2048, 3072). Will OpenSSH be compliant with this new standard? If yes, could you share with me the delivery plan of OpenSSh version implementing FIPS186-3/NIST SP800-57 standard? Thanks in advance. Best Regards GERARDO PETTI Software Engineer, AXE IO Area Ericsson Italy TEI/XSD via Madonna di Fatima, 2 Pagani, Italy gerardo.petti at ericsson.com www.ericsson.com This Communication is Confidential. We only send and receive email on the basis of the terms set out at www.ericsson.com/email_disclaimer
2008 Aug 28
3
Upgrading R means I lose my packages
The title says it all. Does anyone know of a way to save your packages when you upgrade to a new version of R? This may seem petty, but I'm accumulating enough packages that having to download and install each of them anew every time I install a new version of R is rather of a pain. Ideally, I would like the new version of R to recognize the packages I've installed on the
2017 Jun 20
3
Help
Dear expert friends, I'm pretty young of this world and my question at your eyes can be petty easy. I'll need to change the name of the levels inside a column of my data-frame levels(ind.davis$Ageclass) <- c("adult", "Juvanile", "sub-adult") names(ind.davis$Ageclass) <- c("Adult", "Juvenile", "Sub-adult") that is what I
2012 Jul 20
7
Oracle tries to capture CentOS users
Hello CentOS Guys :-) Oracle has created a new Website to capture CentOS Users :o http://linux.oracle.com/switch/centos/ -- Chris
2017 Jan 16
4
Your help needed: List of LLVM Open Projects 2017
...I know we usually try to avoid any big "projects" and mainly add/fix things > > in response to user needs, but just wondering if somebody has any ideas. > > > > I'm not particularly active in lld anymore, but the last big item I'd > like to see implemented is Pettis-Hansen layout. > http://perso.ensta-paristech.fr/~bmonsuez/Cours/B6-4/Articles/papers15.pdf <http://perso.ensta-paristech.fr/~bmonsuez/Cours/B6-4/Articles/papers15.pdf> > (mainly because it improves performances of the final executable). > GCC/gold have an implementation of the algo...
2017 Jan 16
2
Your help needed: List of LLVM Open Projects 2017
...ly add/fix > >> > things > >> > in response to user needs, but just wondering if somebody has any > ideas. > >> > > >> > >> I'm not particularly active in lld anymore, but the last big item I'd > >> like to see implemented is Pettis-Hansen layout. > >> http://perso.ensta-paristech.fr/~bmonsuez/Cours/B6-4/ > Articles/papers15.pdf > >> (mainly because it improves performances of the final executable). > >> GCC/gold have an implementation of the algorithm that can be used as > >> base. I...
2009 Feb 14
2
anova help
Hi all, I am trying to run a two factor anova, but one of the factors is a random factor, now I am also running in SPSS and it seems its dividing by the wrong term to get the appropriate F term. here is my data. In SPSS the F scores about double the ones in R, how can I specify one of my factors as a random factor or change it to where it does the right model fitting? I am using the lm command