Upgrade to Pro — share decks privately, control downloads, hide ads and more …

データフレームを操作/how_to_manipulate_dataframes

 データフレームを操作/how_to_manipulate_dataframes

florets1

June 08, 2023
Tweet

More Decks by florets1

Other Decks in Programming

Transcript

  1. order_no 1 client AAA orders (注文ヘッダー) 1 abcd 2300 100

    seq_no unit_price item qty 2 efg 1500 90 (new)
  2. 1 abcd 2300 100 seq_no unit_price item qty 2 efg

    1500 90 (new) details (注文明細) order_no 1 client AAA items (商品)
  3. まとめ Tidyverse 便利なライブラリ ← 代入 C() ベクトル ▷ パイプライン tibble()

    データフレーム read_csv() 読み込む filter() 抽出 select() 選択 inner_join() 結合 mutate() 列を追加 group_by() グループ化 summarise() 集計 group_nest() 入れ子にする map_dbl() リストに関数適用 ~ . ラムダ式 unnest() 入れ子を解除