Literature Citation for a Method Discussed Elsewhere - intervals

Does anyone know of a good literature citation for the method of generating prediction intervals as described in the answer to this question
The method is also discussed on Ben Bolker's github page:
Thanks in advance for your help!

It looks like it explains some of the information in Chapter 10 of his book:
Bolker, B. M.: Ecological Models and Data in R, in, Princeton University Press, New Jersey, 2008.
Book Link

Related

What is the Practical Byzantine Fault Tolerance?

Can somebody please provide a gist of the Byzantine Fault Tolerant algorithm and Liskov's algorithm?
Thanks.
I think the introduction to Chapter 4 of Castro and Liskov's article from 1999 gives a concise and good overview of the inner workings of the algorithm: http://pmg.csail.mit.edu/papers/osdi99.pdf
You can know much details of how PBFT works by reading the paper published in OSDI(1999).
If you want to have understanding the algorithm throughly used in PBFT, then, I highly recommend doctoral thesis and technical paper. Both are written by original author, Miguel Castro. It contains almost everything that you want to know about PBFT. And if you want to see its implementation in code-level, you can download and check the software in this page.

Where can I learn more about relativisations of P and NP?

A landmark paper entitled "Relativisations of the P =? NP Question" by Theodore Baker, John Gill, and Robert Solovay was published in the SIAM Journal of Computing Vol.4, No.4, December 1975.
It talks about the P vs. NP problem and introduces methods of relativisations. I have the paper, but I'd like to know more about testing an algorithm to see if it is relativisable. Where can I find more resources on this?
There is more information. A recent attempt was made at proving that P is not equal to NP, and it involved trying to avoid relativisations. I was wondering if someone might have more information on this so that I may be able to learn more on the techniques involved. For example, a link to the paper would be good.
Again, any help on this topic would be greatly appreciated.
I found this blog (from Terry Tao) interesting on the subject.

naive bayesian spam filter question

I am planning to implement spam filter using Naive Bayesian classification model.
Online I see a lot of info on Naive Bayesian classification, but the problem is its a lot of mathematical stuff, than clearly stating how its done. And the problem is I am more of a programmer than a mathematician (yes I had learnt Probability and Bayesian theorem back in school, but out of touch for a long long time, and I don't have luxury of learning it now (Have nearly 3 weeks to come-up with a working prototype)).
So if someone can explain or point me to location where its explained for programmers than a mathematician, it would be a great help.
PS: By the way I have to implement it in C, if you want to know. :(
Regards,
Microkernel
The book Programming Collective Intelligence has chapter that covers this and other methods. The chapter (#6) can be understood without reference to previous chapters, is written clearly, and discusses only the minimal mathematics necessary to get the job done.
You could try this website. It's got some source code.
I would highly recommend Andrew Moore's tutorials and I think you should start with this one.
You could also take a look at POPFile, an open source spam filter engine.
Have you looked at dspam?
http://dspam.irontec.com/faq.shtml#1.0
http://www.nuclearelephant.com/

Where can I find review materials?

I've got interviews coming up for an internship this summer, and I'd like to review common algorithms and data structures so that I won't be caught off guard by any of the technical questions.
Can anyone recommend a good resource, online or otherwise, for a refresher on common things like shuffling an array, tree traversal, linked lists, etc?
Robert Sedgewick's "Algorithms in $language" are a nice source.
http://www.cs.princeton.edu/~rs/
And of course, Cormen et. al.'s "Introduction to Algorithms" for a more abstract view
http://mitpress.mit.edu/catalog/item/default.asp?ttype=2&tid=11866
Oh, and of course, can't forget Knuth's "The Art of Computer Programming", the definitive compendium...
http://en.wikipedia.org/wiki/The_Art_of_Computer_Programming
This book has a decent review for the basics along with code samples: Programming Interviews Exposed. MIT has an open courseware algorithms class with video lectures here. That goes into way more depth, but you can skip around and pick one what you want. I'm sure just searching google for "algorithms site:.edu" will bring up lots of useful results too.

How can I find the Reviews for all the technical Books?

Is there any site for technical books reviews and comments. So that it is very useful before reading the book.
I usually use Amazon's reviews and whatever a search finds me. Ideally I like to see a review weigh up pros and cons with examples of both the good and the bad, rather than just saying "This book is great."
There's a problem with reviewing technical books though: if you don't know the topic, you can't judge how accurate the book is, but you get a rough idea of how well it explains things (in terms of whether or not you get lost). If you do know the topic, you can judge accuracy but you can't judge how useful it would be to a newbie. I've blogged about this in more detail. (If you happen to want to read a review of any book I've reviewed, I have a book review tag on my blog. I tend to be harsher than most reviewers, partly because I have a very high standard for accuracy (not that I'm claiming to meet it myself), but I do at least explain why I do or don't like a book.
Amazon.com?
http://books.slashdot.org/

Resources