0
1

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 1 year has passed since last update.

R にインストール済みのパッケージのバージョンを確認する方法

Last updated at Posted at 2023-01-07

概要

Rで解析した結果を論文に記載したり、論文の内容を自身の環境で再現する際に、インストールされたパッケージのバージョンを確認する必要がると思います。

インストール済みのパッケージのバージョンを確認する関数には、「packageVersion」があります。

プログラムの実行

使い方は以下の通りです。

packageVersion("パッケージ名")

以下に、コマンドの例を示しておきます。

packageVersion("clusterProfiler")
> [1] 4.2.2

packageVersion("ggplot2")
> [1] 3.3.6

ご覧いただきどうもありがとうございました。

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?