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?

RのINLAをインストールする(超短編)

Last updated at Posted at 2024-12-02

目的

Rで地理生物学の空間統計を行う際に扱おうと考えたINLAというライブラリをインストールした際のエラーを何とかするために、私なりに解決した方法です。

非常に短いですが、誰かの作業の助けになればと思います。

必要なもの

R (version 4.4.1)
INLA 2024.06.27のzipファイル ここから入手

やること

①Rコンソールの起動
②上のメニューの「パッケージ」→「Install package(s) from local file」を選択
③INALのzipファイルを選択
④動作確認 (INLAのサンプルコードを全て実行し、関数の出力が問題なく行われれば成功)

library(INLA) #エラーが出なければOK

おまけ

INLAのサンプルコード (サイト)を実行する際、fmesherでエラーが出ること場合があります。
以下で解決できる場合があります。

if (!requireNamespace("fmesher", quietly = TRUE)) {install.packages("fmesher", repos ="https://inla.r-inla-download.org/R/stable")}

以上、つい先日、かなりの時間をかけてしまったことだったので、同様の問題にぶつかっている人に向けて短くまとめました。

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?