タグ

2016年10月6日のブックマーク (2件)

  • ベイズ統計の理論と方法

    ベイズ統計の理論と方法 渡辺澄夫 ベイズ統計の理論と方法、コロナ社、2012 , アマゾンのページ このではベイズ統計の理論と方法を紹介しています。 ベイズ統計については良いがたくさん出版されていますので、他のと 合わせてお読み頂ければ幸いです。 初めてベイズ統計に出あった人はもちろん、これまでにベイズ統計について勉強を されていて、多くの疑問を持たれているかたに書をお薦めします。 特に、ベイズ統計について『いろいろなに○○○と書いてあるが、これは 当のところ正しいのだろうか』と思われていることが沢山あるかたに書を お勧めします。例えば、 Q1.なぜ事前分布を信じることができるのだろうか? Q2.ベイズ法は数理や理論に支えられていないのだろうか? 『百人いれば百個の推論』でよいのだろうか? Q3.私は BIC や DIC でモデルを設計して来たが、それで当によかったのだろう

  • From &str to Cow

    Some of the first Rust code I wrote was a struct with a &str field. As you might imagine, the borrow checker didn’t let me do a lot of things, and the API ergonomics were limited. This article aims to demonstrate the issues with having raw &str references in structs, introduce some intermediate APIs that alleviate the ergonomics but aren’t necessarily efficient, and end with an implementation that