Creating a data frame from a list in pyspark.sql

I am completely lost in a wired situation. I now have a listli

li = example_data.map(lambda x: get_labeled_prediction(w,x)).collect()
print li, type(li)

the conclusion is similar

[(0.0, 59.0), (0.0, 51.0), (0.0, 81.0), (0.0, 8.0), (0.0, 86.0), (0.0, 86.0), (0.0, 60.0), (0.0, 54.0), (0.0, 54.0), (0.0, 84.0)] <type 'list'>

When I try to create a DataFrame from this list

m = sqlContext.createDataFrame(l, ["prediction", "label"])

He sent an error message

TypeError                                 Traceback (most recent call last)
<ipython-input-90-4a49f7f67700> in <module>()
 56 l = example_data.map(lambda x: get_labeled_prediction(w,x)).collect()
 57 print l, type(l)
---> 58 m = sqlContext.createDataFrame(l, ["prediction", "label"])
 59 '''
 60 g = example_data.map(lambda x:gradient_summand(w, x)).sum()

/databricks/spark/python/pyspark/sql/context.py in createDataFrame(self, data, schema, samplingRatio)
423             rdd, schema = self._createFromRDD(data, schema, samplingRatio)
424         else:
--> 425             rdd, schema = self._createFromLocal(data, schema)
426         jrdd = self._jvm.SerDeUtil.toJavaArray(rdd._to_java_object_rdd())
427         jdf = self._ssql_ctx.applySchemaToPythonRDD(jrdd.rdd(), schema.json())

/databricks/spark/python/pyspark/sql/context.py in _createFromLocal(self, data, schema)
339 
340         if schema is None or isinstance(schema, (list, tuple)):
--> 341             struct = self._inferSchemaFromList(data)
342             if isinstance(schema, (list, tuple)):
343                 for i, name in enumerate(schema):

/databricks/spark/python/pyspark/sql/context.py in _inferSchemaFromList(self, data)
239             warnings.warn("inferring schema from dict is deprecated,"
240                           "please use pyspark.sql.Row instead")
--> 241         schema = reduce(_merge_type, map(_infer_schema, data))
242         if _has_nulltype(schema):
243             raise ValueError("Some of types cannot be determined after inferring")

/databricks/spark/python/pyspark/sql/types.py in _infer_schema(row)
831         raise TypeError("Can not infer schema for type: %s" % type(row))
832 
--> 833     fields = [StructField(k, _infer_type(v), True) for k, v in items]
834     return StructType(fields)
835 

/databricks/spark/python/pyspark/sql/types.py in _infer_type(obj)
808             return _infer_schema(obj)
809         except TypeError:
--> 810             raise TypeError("not supported type: %s" % type(obj))
811 
812 

TypeError: not supported type: <type 'numpy.float64'>

But when I hard code this list in a line

tt = sqlContext.createDataFrame([(0.0, 59.0), (0.0, 51.0), (0.0, 81.0), (0.0, 8.0), (0.0, 86.0), (0.0, 86.0), (0.0, 60.0), (0.0, 54.0), (0.0, 54.0), (0.0, 84.0)], ["prediction", "label"])
tt.collect()

It works well.

[Row(prediction=0.0, label=59.0),
 Row(prediction=0.0, label=51.0),
 Row(prediction=0.0, label=81.0),
 Row(prediction=0.0, label=8.0),
 Row(prediction=0.0, label=86.0),
 Row(prediction=0.0, label=86.0),
 Row(prediction=0.0, label=60.0),
 Row(prediction=0.0, label=54.0),
 Row(prediction=0.0, label=54.0),
 Row(prediction=0.0, label=84.0)]

what caused this problem and how to fix it? Any hint would be appreciated.

+4
source share
1 answer

You have one list of float64, and I think he doesn’t like this type. On the other hand, when you hardcode it, it's simple list of float.
Here is a question with an answer to the question of how to convert from a numat data type to native python.

+4
source

Source: https://habr.com/ru/post/1648724/


All Articles