search for: pbz

Displaying 15 results from an estimated 15 matches for "pbz".

Did you mean: pbx
2017 Nov 09
2
[R-pkgs] Release of ess 0.0.1
> * Jorge Cimentada <pvzragnqnw at tznvy.pbz> [2017-11-09 00:02:53 +0100]: > > I'm happy to announce the release of ess 0.0.1 a package designed to > download data from the European Social Survey Given the existence of ESS (Emacs Speaks Statistics - https://ess.r-project.org/) the package name "ess" seems unfortunat...
2005 Jan 18
1
I am new to PXE booting and I have a question about PXE within Red Hat
...or setting up PXE under Red Hat Fedora Core or Red Hat Enterprise? I want to roll out a large number of machines with only an Ethernet card for I/O and PXE seems to be The Right Way to do it but figuring out how it works seems challenging. Thank you. Jeff Silverman echo "wfvyirezna at erny.pbz" | tr "a-z" "n-za-m"
2017 Nov 10
1
[R-pkgs] Release of ess 0.0.1
> On 9 Nov 2017, at 15:57, Sam Steingold <sds at gnu.org> wrote: > >> * Jorge Cimentada <pvzragnqnw at tznvy.pbz> [2017-11-09 00:02:53 +0100]: >> >> I'm happy to announce the release of ess 0.0.1 a package designed to >> download data from the European Social Survey > > Given the existence of ESS (Emacs Speaks Statistics - > https://ess.r-project.org/) the package name &quo...
2017 Nov 10
0
[R-pkgs] Release of ess 0.0.1
...ada *https://cimentadaj.github.io/ <https://cimentadaj.github.io/>* On Fri, Nov 10, 2017 at 12:41 PM, Rainer Krug <rainer_krug at icloud.com> wrote: > > > On 9 Nov 2017, at 15:57, Sam Steingold <sds at gnu.org> wrote: > > * Jorge Cimentada <pvzragnqnw at tznvy.pbz> [2017-11-09 00:02:53 +0100]: > > I'm happy to announce the release of ess 0.0.1 a package designed to > download data from the European Social Survey > > > Given the existence of ESS (Emacs Speaks Statistics - > https://ess.r-project.org/) the package name "ess&quo...
2017 Nov 10
1
[R-pkgs] Release of ess 0.0.1
.../ <https://cimentadaj.github.io/>* > On Fri, Nov 10, 2017 at 12:41 PM, Rainer Krug <rainer_krug at icloud.com> > wrote: >> On 9 Nov 2017, at 15:57, Sam Steingold <sds at gnu.org> wrote: >> >> * Jorge Cimentada <pvzragnqnw at tznvy.pbz> [2017-11-09 00:02:53 +0100]: >> >> I'm happy to announce the release of ess 0.0.1 a package designed to >> download data from the European Social Survey >> >> >> Given the existence of ESS (Emacs Speaks Statistics - >>...
2006 Mar 17
6
removing NA from a data frame
Hi, It appears that deal does not support missing values (NA), so I need to remove them (NAs) from my data frame. how do I do this? (I am very new to R, so a detailed step-by-step explanation with code samples would be nice). Some columns (variables) have quite a few NAs, so I would rather drop the whole column than sacrifice all the rows (observations) which have NA in that column. How do I
2008 Aug 22
1
A couple of minutes on GnuPG and signing files
...17:43:28 -0400 (EDT) From: R P Herrold <herrold at owlriver.com> To: trading-shim general mailing list <ts-general at trading-shim.org> Subject: segmentation faults In-Reply-To: <1219351509.12150.18.camel at gb07> Message-ID: <alpine.LRH.1.999.0808211742100.2443 at arj.bjyevire.pbz> References: <200808202117.m7KLH4rf011059 at pippin.first.lan> <20080820224216.GA11712 at localhost> <alpine.LRH.1.10.0808202147340.28881 at arj.bjyevire.pbz> <1219351509.12150.18.camel at gb07> User-Agent: Alpine 1.999 (LRH 1145 2008-08-19) X-M: Go Blue X-...
2005 Aug 26
1
Re: Speex-dev Digest, Vol 15, Issue 15
...from Craig might not be correct. - Cheng > Message: 2 > Date: Thu, 25 Aug 2005 04:15:44 -0500 (CDT) > From: Ashhar Farhan <farhan@phonestack.com> > Subject: [Speex-dev] speex in google talk > To: speex-dev@xiph.org > Message-ID: <Pine.LNX.4.62.0508250413360.1266@ubgsbba.pbz> > Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed > > hi, > google talk is evaluating speex. congratulations to everybody. > check http://www.google.com/talk/developer.html#protocols > > - farhan
2010 Apr 27
0
R-help Digest, Vol 86, Issue 28
...rrold at owlriver.com> > To: Marshall Feldman<marsh at uri.edu> > Cc:r-help at r-project.org > Subject: [R] Upgrading R using the "global library folder" strategy -, > what do you think about it? > Message-ID:<alpine.LRH.2.00.1004262141510.25472 at arj.bjyevire.pbz> > Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed > > On Mon, 26 Apr 2010, Marshall Feldman wrote: > > >> > So why not have the appropriate >> > scripts ask a few questions upon the first installation of R (e.g., "Do you >> > want...
2006 May 11
3
cannot turn some columns in a data frame into factors
Hi, I have a data frame df and a list of names of columns that I want to turn into factors: df.names <- attr(df,"names") sapply(factors, function (name) { pos <- match(name,df.names) if (is.na(pos)) stop(paste(name,": no such column\n")) df[[pos]] <- factor(df[[pos]]) cat(name,"(",pos,"):",is.factor(df[[pos]]),"\n")
2012 Oct 18
3
how to concatenate factor vectors?
How do I concatenate two vectors of factors? --8<---------------cut here---------------start------------->8--- > a <- factor(5:1,levels=1:9) > b <- factor(9:1,levels=1:9) > str(c(a,b)) int [1:14] 5 4 3 2 1 9 8 7 6 5 ... > str(unlist(list(a,b),use.names=FALSE)) Factor w/ 9 levels "1","2","3","4",..: 5 4 3 2 1 9 8 7 6 5 ...
2012 Mar 25
2
avoiding for loops
I have data that looks like this: > df1 group id 1 red A 2 red B 3 red C 4 blue D 5 blue E 6 blue F I want a list of the groups containing vectors with the ids. I am avoiding subset(), as it is only recommended for interactive use. Here's what I have so far: df1 <- data.frame(group=c("red", "red", "red", "blue",
2013 Jul 31
29
[PATCH 0/9] tools: remove or disable old/useless/unused/unmainted stuff
depends on "autoconf: regenerate configure scripts with 4.4 version" This series removes some of the really old deadwood from the tools build and makes some other things which are on their way out configurable at build time with a default depending on how far down the slope I judge them to be. * nuke in tree copy of libaio * nuke obsolete tools: xsview, miniterm, lomount & sv *
2001 Oct 08
1
Executing ssh commands on many computers
We have two SP computers with 8 nodes each and ocasionaly we have to execute comands on all of them. We do that with ssh private and public keys without passphrase. I a loop we do ssh node* comand The problem is: After a few nodes ssh client waits for a long time and after that every new connection is slower. It looks to me like ssh client has used all the entropy for generating session keys
2001 Apr 10
2
Compiling openssh 2.5.p1 on unixware 7.0.1
Hi. I'm tryng to compile openssh 2.5.p1 (latest) on sco unixware 7.0.1 and I'm getting this error in make: cc -o sshd sshd.o auth.o auth1.o auth2.o auth-chall.o auth2-chall.o auth-rhosts.o auth-options.o auth-krb4.o auth-pam.o auth2-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o auth-sia.o dh.o sshpty.o log-server.o sshlogin.o loginrec.o servconf.o serverloop.o md5crypt.o session.o