Statistical Physics with R: Ising Model with Monte Carlo
51–60 of 70 posts
Re: Statistical Physics with R: Ising Model with Monte Carlo
#52Earlier quoted context omitted.
Physics and Mechanics are not synonyms. The latter is a small subset of the former.
Yes, but this relation does but apply to statistical mechanics and statistical physics, they mean the same: https://en.wikipedia.org/wiki/Statistical_mechanics What is included in "statistical physics" that is not included in "statistical mechanics"?
Re: Statistical Physics with R: Ising Model with Monte Carlo
#53Why is this worth posting? Simulating a 1D Ising model is a homework exercise for undergrads.
Re: Statistical Physics with R: Ising Model with Monte Carlo
#54Earlier quoted context omitted.
I wonder how close R was to also take over the scientific computing/machine learning space, instead of Python's numpy/scipy ecosystem.
R is really not for production deployment. It lacks a lot of what made python popular, and its target users were radically different.
Re: Statistical Physics with R: Ising Model with Monte Carlo
#55Earlier quoted context omitted.
Yes, but this relation does but apply to statistical mechanics and statistical physics, they mean the same: https://en.wikipedia.org/wiki/Statistical_mechanics What is included in "statistical physics" that is not included in "statistical mechanics"?
There is a distinction. Usually statistical mechanics means the ensemble theory and partition functions that connects microscopic systems to macroscopic ones from material point of views. However, statistical physics is a bit more generic, for example complex networks may not use ensemble theory or partition functions and could use only statistics on the network, such as average neighbourhood or similar.
“Statistical mechanics” is also used in a broad sense, just like “quantum mechanics” is often used for anything “quantum”.
Re: Statistical Physics with R: Ising Model with Monte Carlo
#56Earlier quoted context omitted.
Physics and Mechanics are not synonyms. The latter is a small subset of the former.
Yes, but this relation does but apply to statistical mechanics and statistical physics, they mean the same: https://en.wikipedia.org/wiki/Statistical_mechanics What is included in "statistical physics" that is not included in "statistical mechanics"?
Re: Statistical Physics with R: Ising Model with Monte Carlo
#57Earlier quoted context omitted.
I wonder how close R was to also take over the scientific computing/machine learning space, instead of Python's numpy/scipy ecosystem.
I love and use R, but it never became the dominant ML in part because it has three (or more) different object systems and many libraries sort of use their own style. This makes it seem a bit disjointed, in a way that other languages don’t. The R community should have anointed one object system and made tidyverse a core part of R. All that said, R is fantastic and the depth of libraries is extensive. Libs are often wr…
Re: Statistical Physics with R: Ising Model with Monte Carlo
#58Earlier quoted context omitted.
There is a distinction. Usually statistical mechanics means the ensemble theory and partition functions that connects microscopic systems to macroscopic ones from material point of views. However, statistical physics is a bit more generic, for example complex networks may not use ensemble theory or partition functions and could use only statistics on the network, such as average neighbourhood or similar.
People have also used “statistical physics” to refer to the former concept since forever. For example Landau. “Statistical mechanics” is also used in a broad sense, just like “quantum mechanics” is often used for anything “quantum”.
Re: Statistical Physics with R: Ising Model with Monte Carlo
#59Earlier quoted context omitted.
I wonder how close R was to also take over the scientific computing/machine learning space, instead of Python's numpy/scipy ecosystem.
In statistical physics they still use C a lot, as far as I know.
Re: Statistical Physics with R: Ising Model with Monte Carlo
#60Earlier quoted context omitted.
I love and use R, but it never became the dominant ML in part because it has three (or more) different object systems and many libraries sort of use their own style. This makes it seem a bit disjointed, in a way that other languages don’t. The R community should have anointed one object system and made tidyverse a core part of R. All that said, R is fantastic and the depth of libraries is extensive. Libs are often wr…
The developing S7 object system ( https://github.com/RConsortium/S7 ) is looking fairly promising in that it combines many of the nice properties of S3 and S4 (validation, multiple dispatch, sane constructors) while still being fairly simple and straightforward to use.