search for: afficianados

Displaying 11 results from an estimated 11 matches for "afficianados".

2011 Sep 07
1
[LLVMdev] ARM CPSR liveness
All, ARM LLVM afficianados: I'm trying to understand how LiveVariables computes liveness for CPSR. In particular, I would like to tell whether a particular instruction is a use/kill/def for doing some within block liveness checking I need. Thanks in advance, David -------------- next part -------------- An HTML attach...
2010 Aug 20
4
Regex exercise
For regular expression afficianados, I'd like a cleverer solution to the following problem (my solution works just fine for my needs; I'm just trying to improve my regex skills): Given the string (entered, say, at a readline prompt): "1 2 -5, 3- 6 4 8 5-7 10" ## only integers will be entered parse it to pro...
2024 Jul 21
1
Extract
As always, good point. Here's a piped version of your code for those who are pipe afficianados. As I'm not very skilled with pipes, it might certainly be improved. dat <- dat$string |> read.table( text = _, fill = TRUE, header = FALSE, na.strings = "") |> (\(x)'names<-'(x,paste0("s", seq_along(x))))() |> (\(x)cb...
2024 Jul 22
3
Extract
...TRUE, na.strings = "") |> rename_with(~ sub("^V", "S", .x)) ) On Sun, Jul 21, 2024 at 3:08?PM Bert Gunter <bgunter.4567 at gmail.com> wrote: > > As always, good point. > Here's a piped version of your code for those who are pipe > afficianados. As I'm not very skilled with pipes, it might certainly > be improved. > dat <- > dat$string |> > read.table( text = _, fill = TRUE, header = FALSE, na.strings = "") |> > (\(x)'names<-'(x,paste0("s", seq_along(x))))...
2011 Aug 08
1
keeping output in memory
Dear R afficianados! I'm writing a script to create a frequency list for multiple files. I've written a "for" loop to iterate through the selected folder and creating lists for each file. In the line "write(freq.list, file=filename[[1]], sep="", append=FALSE)" I've written th...
2000 Mar 09
1
FW: : Re: Multiple smbd processes generated
Dear Dave, Doesn't this only work if you're using samba as a domain controller and the client says "net use h: /home" I've not got it to redirect "//server1/username" to "//server2/username" when the NIS map says "user server2:/path/&" Though if it could be done I'd be VERY keen. Tim "David Collier-Brown"
2024 Jul 22
1
Extract
...t; rename_with(~ sub("^V", "S", .x)) > ) > > > On Sun, Jul 21, 2024 at 3:08?PM Bert Gunter <bgunter.4567 at gmail.com> wrote: > > > > As always, good point. > > Here's a piped version of your code for those who are pipe > > afficianados. As I'm not very skilled with pipes, it might certainly > > be improved. > > dat <- > > dat$string |> > > read.table( text = _, fill = TRUE, header = FALSE, na.strings = "") |> > > (\(x)'names<-'(x,paste0(&quot...
2024 Jul 21
1
Extract
Fixing col.names=paste0("S", 1:5) assumes that there will be 5 columns and we may not want to do that. If there are only 3 fields in string, at the most, we may wish to generate only 3 columns. On Sun, Jul 21, 2024 at 2:20?PM Bert Gunter <bgunter.4567 at gmail.com> wrote: > > Nice! -- Let read.table do the work of handling the NA's. > However, even simpler is to use
2005 Feb 05
17
debian python-install.patch (3 of 5)
Name: python-install.patch Description: Use --root instead of --home --home causes python''s distutils to install into /usr/lib/python/, while --root causes it to install into /usr/lib/python$ver/site-packages, which is the more correct location. Signed-off-by: Adam Heath <doogie@brainfood.com> DiffStat: tools/python/Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2
2007 Jul 10
4
type III ANOVA for a nested linear model
Hello, is it possible to obtain type III sums of squares for a nested model as in the following: lmod <- lm(resp ~ A * B + (C %in% A), mydata)) I have tried library(car) Anova(lmod, type="III") but this gives me an error (and I also understand from the documentation of Anova as well as from a previous request (http://finzi.psych.upenn.edu/R/Rhelp02a/archive/64477.html) that it is
2010 Aug 24
0
mlm for within subject design
...408.8111 > -----Original Message----- > From: r-help-bounces at r-project.org [mailto:r-help-bounces at r- > project.org] On Behalf Of Bert Gunter > Sent: Friday, August 20, 2010 2:55 PM > To: r-help at r-project.org > Subject: [R] Regex exercise > > For regular expression afficianados, I'd like a cleverer solution to > the following problem (my solution works just fine for my needs; I'm > just trying to improve my regex skills): > > Given the string (entered, say, at a readline prompt): > > "1 2 -5, 3- 6 4 8 5-7 10" ## only integers will...