5
6

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 3 years have passed since last update.

Rのgtsummaryで集計のデフォルトを平均(標準偏差)にする方法

Last updated at Posted at 2020-09-27

2020/09/30更新
gtsummaryのバージョンが1.3.5となったため修正

質問

Rで手軽にきれいな集計表(医療統計では表1やtable1と呼ばれる)をつくるgtsummaryというパッケージがあります。

ただgtsummaryはデフォルトの集計が中央値(IQR)で、群間比較がWilcoxonの順位和検定やクラスカル・ウォリス検定とノンパラメトリックな手法となっています。

個別に平均(標準偏差)やt検定、分散分析に設定することもできますが、デフォルトにする設定はありますか?

解決策

バージョン1.3.4.9008以降で使えるtheme_gtsummary_mean_sd()で一発です。

記事執筆時はCRANに登録されていないのでgithubからインストールする必要があります。
バージョン1.3.5となりCRANに登録されました。

install.packages("gtsummary")

ライブラリでgtsummaryを読み込んだ後、'theme_gtsummary_mean_sd()'を使います。

library(gtsummary)
theme_gtsummary_mean_sd()

あとはreset_gtsummary_theme()で設定を戻すまではデフォルトが変わります。

詳しくはこちら

【1-11-2】医療統計で必要なtable1、集計からofficeに貼り付けるまでをgtsummaryパッケージで一気に行う

5
6
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
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?