search for: mailblocks

Displaying 20 results from an estimated 35 matches for "mailblocks".

2004 Apr 24
0
letter [Authorize]
Hi, You just sent an email to my glenn@popco.com account, which is now being managed by my Mailblocks spam-free email service. (If you didnt recently send a message to me, please see the Note below*.) Because this is the first time you have sent to this email account, please confirm yourself so you'll be recognized when you send to me in the future. It's simple. To prove your message co...
2005 Jul 23
1
Non-linear "linear" models?
...r, the lm model seems to support higher order polynomials, e.g.: > lm(dist ~ speed + I(speed^2)+I(speed^3), cars) Is there some sense in which that model is "linear", or is R's lm() providing extra functionality? Thanks, --Paul ---------------------------------------------- Mailblocks - A Better Way to Do Email http://about.mailblocks.com/info
2005 Aug 15
3
paste / system mystery
Dear R wizards: under R-2.1.0: eargs <- 3:5; line <- paste(c("echo A B", eargs)); cat("executing from R: '", line, "'\n"); system(line); Oddly, only "A" and "B" are echoed, not the eargs. I had hoped that line would be one string at this point, and for printing this seems to be true. However, unlist(line) still gives me the 4
2004 Jun 25
7
circle / oval / semicircle ?
hi: where would I find facilities to draw circles, ovals, and semicircles? (or should I construct them myself using curve?) regards, /ivo
2004 Jun 20
4
if syntax
I ran into an interesting oddity of R, if (0) { print(1); } else { print(2); } is a syntax error, while if (0) { print(1); } else { print(2); } or if (0) { print(1); } else { print(2); } is not. I presume it has to do with the duality of the newline functioning as an end of command (;) character, though it still seems a bit odd, and it took me a while to figure out
2005 Jul 25
1
ANOVA/aov question
...A, or must the independent variables be quantitative in nature? If the answer is that it can be done, and that it can be done with anova/aov, how do I go about expressing the "data model" for qualitative factors? Thanks much, --Paul ---------------------------------------------- Mailblocks - A Better Way to Do Email http://about.mailblocks.com/info
2005 Aug 22
2
pdf font embedding --- again
dear R wizards--- I would like to do some book-on-demand printing at a popular printer named lulu, but lulu requires inclusion even of the basic postscript fonts. Interestingly, my book itself does not need the 14 base acrobat fonts, only the embedded R figures do. Of course, I really would like to get pdftex to embed the fonts, but how to do this is not obvious either. [This method seems
2004 Aug 21
4
loadhistory() in .Rprofile ?
dear wizards: my .Rprofile has just one command for testing, loadhistory("~/.Rhistory") but this gives me an error on R startup: Error: couldn't find function "loadhistory" Invoking loadhistory() as the first interactive command works fine; incidentally, I believe loadhistory() in the .Rprofile worked in earlier or other platform R releases, too. Is the .Rprofile
2004 Oct 15
4
pdf device --- axes labels text disappeared?
Dear R Wizards: Running R 1.9.1. on amd64. Promise<- c(0,20,40); Expect<- c(0, 20, 0.2*20+.8*40 ); # this omits printing numbers on the axes labels. pdf(file = "bug.pdf" ); plot(Promise, Expect, type="b", ylim=c(0,60)); dev.off(); # this works postscript(file = "bug.eps" ); plot(Promise, Expect, type="b", ylim=c(0,60)); dev.off(); apologies if
2005 Jul 12
2
sharing a decoder between 2 inbound speex streams?
...ot sure what's hard about maintaining multiple decoder states, unless you are extremely resource-constrained or doing something unusual. Normally all you have to do is create a decoder state for each new client and free it when the client is gone. >---- Original Message ---- >From: tone@mailblocks.com >To: speex-dev@xiph.org >Subject: RE: [Speex-dev] sharing a decoder between 2 inbound speex >streams? >Date: Tue, 12 Jul 2005 16:03:02 -0400 > >>This is a hard one to search for in the archives, and I checked the >FAQ >>and the PDFs. >> >>If a VOIP app...
2004 Nov 01
2
non-linear solve?
hi: could someone please point me to a function that allows me to solve general non-linear functions? > irr.in <- function(r, c1, c2, c3 ) { return(c1+c2/(1+r) + c3/(1+r)^2); } > solve.nonlinear( irr.in, -100, 60, 70 ); 0.189 If someone has written an irr function, this would be helpful, too---though not difficult to write, either. thanks for any pointers. Regards, /iaw
2004 Aug 21
1
Cookbook, was Re: [R] R on gentoo amd64, etc.
<ivo_welch-rstat8783@mailblocks.com> writes: > PS: I am still looking for an R wizard who would be interested in > coauthoring an "R cookbook" ala the "perl cookbook" with me... I think I've said it before, but I think such a book ought to coauthor Paul Johnson, whether or not he does any work b...
2004 Sep 13
1
Re: [R] R on gentoo amd64 (gcc 3.3.3) is unstable --- no!
This has been in the R-admin manual for a least a week, and I reported it here earlier than that. R 2.0.0 alpha does not allow f2c on 64-bit platforms. It's all been dealt with quite awhile ago .... On Sun, 12 Sep 2004 ivo_welch-rstat8783@mailblocks.com wrote: > > from the gentoo folks, on f2c problems with R on 64bit platforms: > > "Config and me finally found the reason. When R calls fortran functions > from its c sources, it uses strictly ints for intgeres, not long ints. > But f2c is perfectly right to use long...
2004 Jul 29
2
expression + paste + arguments + ...
dear R wizards: I would like to write a function that roughly places the equivalent of the following latex text into the current plot: \newcommand{ \placesigma }[4]{ \put(\#1,\#2){ \sigma_{A , #3} = #4 } I cannot figure out how to do this. I know I have to use a function that uses expressions in a text() invoke. But passing arguments and nesting strings and expressions has so far not
2004 Aug 21
1
Re: [R] R on gentoo amd64 (gcc 3.3.3) is unstable --- no!
On Sat, 21 Aug 2004 ivo_welch-rstat8783@mailblocks.com wrote: > > peter/brian: thank you for the help. i can now report that gentoo > amd64 can compile R just fine, too; it requires the f77 USE flag and a > gcc compiler rebuild first, though. I also went to gcc 3.4.1. my > segfault troubles earlier were caused by my use of f...
2005 Feb 02
3
postscript symbols?
dear R wizards: is it possible to use a postscript font symbol as a plot symbol? in particular, I want to use the four postscript symbols for playing cards (club, heart, spade, diamond) as points. In LaTeX, these four are \Pisymbol{psy}{"A7} \Pisymbol{psy}{"A8} \Pisymbol{psy}{"A9} \Pisymbol{psy}{"A10} and what I would love to do is place them, at say, (x=1,y=1),
2004 Aug 20
2
R on gentoo amd64 (gcc 3.3.3) is unstable
dear wizards: FYI: gentoo is a linux meta distribution, which compiles all packages. Once running, gentoo is stable on most applications. (it has some problems with system tools, such as grub.) the compiler is gcc 3.3.3. I do not expect anyone to track down for me why R fails on the gentoo amd64+gcc3.3.3 system, but I thought that it would be good to put it on the record to save
2004 Aug 20
2
R on gentoo amd64 (gcc 3.3.3) is unstable
dear wizards: FYI: gentoo is a linux meta distribution, which compiles all packages. Once running, gentoo is stable on most applications. (it has some problems with system tools, such as grub.) the compiler is gcc 3.3.3. I do not expect anyone to track down for me why R fails on the gentoo amd64+gcc3.3.3 system, but I thought that it would be good to put it on the record to save
2005 Jan 04
27
smtp blocked by verizon.net los angeles??
I have a fedora 3 with postfix and apache apache is ok, webmin is fine, etc no 25 or 110 ? kevin Jan 4 15:47:13 ibm kernel: Shorewall:net2fw:ACCEPT:IN=eth0 OUT= MAC=00:06:29:33 :e8:7e:00:02:3b:00:02:c4:08:00 SRC=67.127.200.22 DST=4.11.105.55 LEN=40 TOS=0x00 PREC=0x00 TTL=44 ID=33681 PROTO=TCP SPT=57621 DPT=25 WINDOW=2048 RES=0x00 SYN U RGP=0 Jan 4 15:47:20 ibm kernel:
2005 Jul 17
0
sharing a decoder between 2 inbound speex streams?
...ining multiple decoder states, >unless you are extremely resource-constrained or doing something >unusual. Normally all you have to do is create a decoder state for >each new client and free it when the client is gone. > > > >>---- Original Message ---- >>From: tone@mailblocks.com >>To: speex-dev@xiph.org >>Subject: RE: [Speex-dev] sharing a decoder between 2 inbound speex >>streams? >>Date: Tue, 12 Jul 2005 16:03:02 -0400 >> >> >> >>>This is a hard one to search for in the archives, and I checked the >>>...