2
2

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

R tips データ整理に使えるライブラリdplyr

Last updated at Posted at 2020-11-17

記事の目的

データを整理する際にとても使えるライブラリである「dplyr」についていくつか解説します!
ここに乗せているソースコードは、コピペで全部再現できます。

目次

No. 目次 説明
1 ライブラリと使用するデータ dplyr / iris
2 sample_n データからランダムにいくつか抽出
3 select 条件に合う"列"抽出
4 filter 条件に合う"行"抽出
5 group_by+summarise グループごとに統計量などを抽出
6 mutate データをいじって新しい列を追加
7 arrange 並び替え( 昇順 , 降順 )
8 rename カラムの名前変更

1. ライブラリと使用するデータ

libraryはもちろんdplyrです!
データはirisのデータセットを使用します。

library(dplyr)
iris %>% head()

image.png

2. sample_n (データからランダムにいくつか抽出)

iris %>% sample_n(5)

image.png

3. select (条件に合う"列"抽出)

iris %>% select(Sepal.Length) %>% sample_n(5)

image.png

4. filter (条件に合う"行"抽出)

# 種類を確認 (uniqueはdplyr関係ないです。)
iris$Species %>% unique()

image.png

# 種類で指定
iris %>% filter(Species=="versicolor") %>% sample_n(5)

image.png

# 数値で指定
iris %>% filter(Sepal.Length>6.5) %>% sample_n(5)

image.png

5. group_by+summarise (グループごとに統計量などを抽出)

iris %>% group_by(Species) %>%
  summarise(Sepal縦の長さの平均=mean(Sepal.Length),
            Sepal横の長さの合計=sum(Sepal.Width))

image.png

6. mutate (データをいじって新しい列を追加)

# 足し算の列を追加
iris %>% mutate(Sepal縦と横の合計=Sepal.Length+Sepal.Width) %>% 
  sample_n(5)

image.png

# クラスを数字に変換
# ifelse(条件,条件がTRUEのときの値,条件がFALSEのときの値)
iris %>% mutate(class=ifelse(Species=="setosa",1,
                             ifelse(Species=="versicolor",2,3))) %>%
  sample_n(5)

image.png

7. arrange (並び替え)

# 昇順
iris %>% arrange(Sepal.Length) %>% head(5)

image.png

# 降順
iris %>% arrange(desc(Sepal.Length)) %>% head(5)

image.png

8. rename (カラムの名前変更)

iris %>% rename(種類=Species) %>% sample_n(5)

image.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?