码迷,mamicode.com
首页 > 其他好文 > 详细

RDD转dataframe

时间:2020-07-07 15:40:28      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:type   ext   ESS   context   nbsp   tty   struct   end   creat   

from pyspark.sql import SparkSession,Row
from pyspark.sql.types import StructField, StructType, StringType, IntegerType, LongType
data = [(Alex,male,3),(Nancy,female,6),[Jack,male,9]] # mixed
rdd_ = spark.sparkContext.parallelize(data)

# schema
schema = StructType([
        # true代表不为空
        StructField("name", StringType(), True),
        StructField("gender", StringType(), True),
        StructField("num", StringType(), True)
    ])
df = spark.createDataFrame(rdd_, schema=schema)  # working when the struct of data is same.
print(df.show()) 

 

RDD转dataframe

标签:type   ext   ESS   context   nbsp   tty   struct   end   creat   

原文地址:https://www.cnblogs.com/muyue123/p/13260672.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!