2017-04-12 59 views

回答

0

我終於可以實現它了。將用於轉換SparseVector的適當架構必須設置爲dataType a new VectorUDT,請注意,如果按照示例,它們通常使用數據類型東西,所以它很艱難。

List<StructField> fields = new ArrayList<>(); 
StructField field = DataTypes.createStructField("features", new VectorUDT(), true); 

fields.add(field); 

StructType schema = DataTypes.createStructType(fields); 
相關問題