0
1

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.

Databricks上でPysparkデータフレームからRデータフレームに変換する

Last updated at Posted at 2020-02-14

はじめに

Databricks上で、Pyspark データフレーム->SparkRデータフレーム->Rデータフレーム へ変換する方法のメモ

コード

Pyspark データフレーム作成

notebook
%python
# データフレーム作成
spark_df = spark.createDataFrame([('a01', 150),('a02', 160)], ["item", "price"])
print(type(spark_df))
spark_df.show()

# Tempviewを作成
spark_df.createOrReplaceTempView("tempview_sparkr")

image.png

SparkR データフレーム作成

notebook

%r
# テーブルからSparkRデータフレームを作成
library(SparkR)
sparkr_df <- sql("select * from tempview_sparkr")
print(class(sparkr_df))
head(sparkr_df)

image.png

R データフレーム作成

notebook



%r
# SparkRデータフレームから Rデータフレームに変換
library(SparkR)

r_df <- collect(sparkr_df)

print(class(r_df))

head(r_df)

image.png

各種ダウンロードリンク

Databricksに直接インポートしたい方はこちら

GitHub Pagesに飛びます

dbcをダウンロードしたい方はこちら

dbcファイルがダウンロードされます

0
1
1

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?