Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re: Basic Statistics (Score 1) 312

Careful. Chebyshev's inequality doesn't help you if you are sampling from a physical process with a Cauchy distribution. Be careful not to confuse the *sample* standard deviation with the *population* standard deviation. The former always exists. The latter is what you use with Chebyshev's inequality... *if* it exists. In the case of a Cauchy distribution, your sample standard deviation would mislead you into thinking that the probability to fall outside N sample standard deviations had some particular bound that it did not have.

Comment Re:So you want to retire a statistical term... (Score 1) 312

He's rather requesting the people start using a different statistical measure of spread, the mean *absolute* deviation, rather than the square root of the mean *squared* deviation (the standard deviation). I'm not familiar enough with it's particular characteristics to say whether or not this would be an improvement in any rigorous sense, but I'd be surprised if it were. So "Get bent." is probably still the right attitude.

Comment Re:Would those data scientists with PhDs (Score 3, Insightful) 312

I know several people who have left high energy physics to become data scientists. Nobody in HEP calls themselves a "data scientist", but that's (some of) what we do anyway. It's just analysis of very large data sets. Unlike in the life sciences, both HEP and many commercial / industrial environments have sufficiently large data sets that very complex questions can be asked and answered. You can never have "enough data" -- if you think you have "enough data", then you aren't asking hard enough questions.

Comment Re:Maybe (Score 2) 293

Possible, although unlikely. The -CDM model does an astonishingly good job of modeling the observed universe. But, that doesn't mean it is right.

In the case of aether, people didn't stop investigating it until a) experiments that should have observed no matter what saw no evidence of it and b) another theory that agreed with this new data came along.

People who trot out the tired old "dark matter is just like aether!" line typically do so while patting themselves on the back for their cleverness, while neglecting the above.

If there isn't WIMP dark matter, or even isn't dark matter at all, then we'll find out. That's how science works.

Comment Re:Fortran (Score 2) 465

This is exactly the right answer. Never write code that someone else has already written. If you can compose standard operations to do your calculations, then do so in a high-level language. Spend more time thinking and less time coding. OTOH, if you need to code up something custom and you're REALLY sure that you can't use standard operations to do it, then think again about whether or not you can do it with standard operations. You probably can. But, if you can't, then go with FORTRAN. Or maybe C or even C++. But probably FORTRAN. But even then, code as little as you can in FORTRAN. Don't write the whole thing in FORTRAN. Create small operations, and compose them in a high-level language as if they were the standard operations.

Slashdot Top Deals

He has not acquired a fortune; the fortune has acquired him. -- Bion

Working...