さんごー日記。

映画や本やゲームの感想をゆるく記録したり、プログラミングの勉強をゆるく記録するゆるい日記です。

Rのplyrパッケージが読み込めない問題の対処

Windows10にてRでplyrパッケージを利用としたらできなかった。

解決策のメモを残します。

 

> install.packages("plyr")
パッケージを ‘C:/Users/(ユーザー名)/Documents/R/win-library/3.4’ 中にインストールします
(‘lib’ が指定されていないため)
URL 'https://cloud.r-project.org/bin/windows/contrib/3.4/plyr_1.8.4.zip' を試しています
Content type 'application/zip' length 1221017 bytes (1.2 MB)
downloaded 1.2 MB

パッケージ ‘plyr’ は無事に展開され、MD5 サムもチェックされました
警告: パッケージ ‘plyr’ の既存のインストールを取り除くことが出来ませんでした

ダウンロードされたパッケージは、以下にあります
C:\Users\(ユーザー名)\AppData\Local\Temp\Rtmp290fex\downloaded_packages

 

plyrは既にインストールされているような雰囲気。

じゃぁ使えるだろうと以下を試す。

> library(plyr)
library(plyr) でエラー: ‘plyr’ という名前のパッケージはありません

 

無いと言われる。

インストール済のパッケージを確認する。

 

> library()

パッケージ (ライブラリ ‘C:/Users/(ユーザー名)/Documents/R/win-library/3.4’ 中):

NLP Natural Language Processing Infrastructure
RColorBrewer ColorBrewer Palettes
Rcpp Seamless R and C++ Integration

~(略)~


パッケージ (ライブラリ ‘C:/Program Files/R/R-3.4.1/library’ 中):

base The R Base Package
boot Bootstrap Functions (Originally by Angelo Canty for S)
class Functions for Classification
cluster "Finding Groups in Data": Cluster Analysis Extended Rousseeuw et al.
codetools Code Analysis Tools for R
compiler The R Compiler Package
datasets The R Datasets Package
foreign Read Data Stored by 'Minitab', 'S', 'SAS', 'SPSS', 'Stata', 'Systat', 'Weka',
'dBase', ...
graphics The R Graphics Package
grDevices The R Graphics Devices and Support for Colours and Fonts
grid The Grid Graphics Package
KernSmooth Functions for Kernel Smoothing Supporting Wand & Jones (1995)
lattice Trellis Graphics for R
MASS Support Functions and Datasets for Venables and Ripley's MASS
Matrix Sparse and Dense Matrix Classes and Methods
methods Formal Methods and Classes
mgcv Mixed GAM Computation Vehicle with GCV/AIC/REML Smoothness Estimation
nlme Linear and Nonlinear Mixed Effects Models
nnet Feed-Forward Neural Networks and Multinomial Log-Linear Models
parallel Support for Parallel computation in R
rpart Recursive Partitioning and Regression Trees

~(略)~

 

plyrの文字無し。

どうやらインストールされていないのにインストールされている事になっている模様?

 

Windows10のエクスプローラーで確認するとdllは存在している。

f:id:thirtyfive:20170728124110p:plain

しかし何だかファイルが足りていないような気がする。

理由は分からないが、間違ったファイルがインストールされた状態になっていたのかもしれない。

エクスプローラー上でplyrフォルダーごと削除して再度インストールを試します。

 

> install.packages("plyr")
パッケージを ‘C:/Users/(ユーザー名)/Documents/R/win-library/3.4’ 中にインストールします
(‘lib’ が指定されていないため)
URL 'https://cloud.r-project.org/bin/windows/contrib/3.4/plyr_1.8.4.zip' を試しています
Content type 'application/zip' length 1221017 bytes (1.2 MB)
downloaded 1.2 MB

パッケージ ‘plyr’ は無事に展開され、MD5 サムもチェックされました

ダウンロードされたパッケージは、以下にあります
C:\Users\(ユーザー名)\AppData\Local\Temp\Rtmp290fex\downloaded_packages

 

インストールされているか確認すると、ちゃんと入ったみたいです。

library()

パッケージ (ライブラリ ‘C:/Users/(ユーザー名)/Documents/R/win-library/3.4’ 中):

BH Boost C++ Header Files
colorspace Color Space Manipulation
dichromat Color Schemes for Dichromats
digest Create Compact Hash Digests of R Objects
ggplot2 Create Elegant Data Visualisations Using the Grammar of Graphics
gtable Arrange 'Grobs' in Tables
labeling Axis Labeling
lazyeval Lazy (Non-Standard) Evaluation
magrittr A Forward-Pipe Operator for R
munsell Utilities for Using Munsell Colours
NLP Natural Language Processing Infrastructure
plyr Tools for Splitting, Applying and Combining Data
RColorBrewer ColorBrewer Palettes

~(略)~

 

というわけで今回の結論は、

「パッケージのフォルダーをエクスプローラー上で削除してから再インストールする」

です。

 

これでやっと次に進める。

入門 機械学習のRのコードを動かしています。

 

入門 機械学習

入門 機械学習

  • 作者: Drew Conway,John Myles White,萩原正人,奥野陽,水野貴明,木下哲也
  • 出版社/メーカー: オライリージャパン
  • 発売日: 2012/12/22
  • メディア: 大型本
  • 購入: 2人 クリック: 41回
  • この商品を含むブログ (11件) を見る