0
0

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 1 year has passed since last update.

Parquetとは

Last updated at Posted at 2022-04-12

1. CSVとParquetの比較

CSV Parquet
指向
利点 非関連列をスキップできるため、クエリの読込や集計を効率化できる

2. 実装

# 入出力ファイル指定
in_file = "xxx.parquet"
out_file = "yyy.parquet"

# 実行
df = pd.read_parquet(in_file)
df.to_parquet(out_file)
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?