4
8

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

Rの使い方についてメモ チートシート的な物

Last updated at Posted at 2016-07-23

 別の所から持ってきたけど、リンクが良くないので少しずつ直す
一度、上げてましたが直したい所があったので、上げ直し。

#Rについて
 https://ja.wikipedia.org/wiki/R%E8%A8%80%E8%AA%9E
 https://www.r-project.org/

#設定等

  • ライブラリのインストール install.packages(”HOGE”)
  • ライブラリの管理について Rのパッケージ管理 (アップデート 、読込済みパッケージ一覧の表示方法)
    ライブラリによっては、前提として入っていなければいけないライブラリがあったりするので注意すること。(dplyr, tidyrで少し困った。)
    dependencies = TRUEとすることで、関連するライブラリが自動で入るっぽい。
  • グラフ化(可視化) ライブラリggplotを使用 http://ggplot2.org/
  • ライブラリの呼び出し方 library(ggplot2)
  • ライブブラリアップデート update.packages()
  • 作業ディレクトリの設定 getwd()
  • その他の便利なライブラリ一覧
    GGally,corrplot,psych,qgraph

##データ準備
 データ読み込み read.csv("hoge.csv",header = T,sep = ",") 41. EXCEL のデータを読み込む

##分析等

##グラフ化

##データ生成
 ランダムデータ生成 正規分布 x <- rnorm( n=3000 )

##データ処理

##行列操作

##その他
 本当のチートシート RStudio - Cheatsheets
 まとめ http://stat.biopapyrus.net/

#おまじないメモ
 install.packages("ggplot2", dependencies=TRUE)

#Rでpythonを動かす。(windows向け)

  • pythonをインストールする。
  • install.packages("PythonInR", dependencies=TRUE)
4
8
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
4
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?