LoginSignup
1
1

More than 5 years have passed since last update.

Rでライブラリを探す

Last updated at Posted at 2013-10-08

CRAN に登録されているライブラリを探すには sos package の ??? を使う。
???http://search.r-project.org/ に問い合わせて結果を表示する。

install.packages("sos") # 最初の一度だけ
library("sos")
???キーワード

ローカルにインストールされているライブラリを探すには ?? を使う。

??キーワード

関数のヘルプは ? を使う。

?関数名

? が並んでて覚えやすいね。

なお、???findFn()??help.search()?help() 関数と同じ。

findFn("キーワード")
help.search("キーワード")
help(関数名)

参考: SO: How to read .arff file with R?

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