5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

回帰分析の有意水準を寿司で表す

Last updated at Posted at 2018-02-05

回帰分析の結果には、有意水準を簡潔に表現する記号としてがよく添えられている。
だが、本質的にはどんな記号でもよいので、今回は🍣で有意性を表現してみる。

texregパッケージ

今回はRのtexregパッケージを使用する。
lmなどの回帰分析結果オブジェクトを引数に取り、LaTeXやhtml等の形式で分析結果を出力してくれる便利パッケージである。
install.packages("texreg")で難なくインストールできるはず。

htmlregでの回帰分析表の出力

ナンセンスな分析だが、irisデータセットを用いて、Petal.LengthPetal.WidthSepal.LengthSepal.WidthSpeciesで回帰した結果をhtml形式で出力する。
まずは普通にやってみる。

library(texreg)
data("iris")
reg <- lm(data = iris,
          formula = Petal.Length ~ Petal.Width + Sepal.Length + Sepal.Width + Species)
htmlreg(l = reg,
        file = "reg_table.html")

reg_table.htmlにはこのように表示される。

普通に回帰分析結果.PNG

star.symbolオプションで有意水準を表す記号を変えられるので、
🍣のサロゲートペア文字列の10進表現である&#127843を指定してやれば、

htmlreg(l = reg,
        file = "reg_table.html",
        star.symbol = "&#127843")

キャプチャ.PNG

🍣の花が咲く。

(texregやscreenregでのやり方はよくわかっていません)

参考

5
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?