本文简要介绍
pyspark.mllib.linalg.Vectors.parse
的用法。用法:
static parse(s)
将字符串表示解析回 Vector。
例子:
>>> Vectors.parse('[2,1,2 ]') DenseVector([2.0, 1.0, 2.0]) >>> Vectors.parse(' ( 100, [0], [2])') SparseVector(100, {0: 2.0})
相关用法
- Python pyspark Vectors.stringify用法及代码示例
- Python pyspark Vectors.squared_distance用法及代码示例
- Python pyspark Vectors.dense用法及代码示例
- Python pyspark Vectors.sparse用法及代码示例
- Python pyspark VectorSlicer用法及代码示例
- Python pyspark VectorSizeHint用法及代码示例
- Python pyspark VectorAssembler用法及代码示例
- Python pyspark VectorIndexer用法及代码示例
- Python pyspark VersionUtils.majorMinorVersion用法及代码示例
- Python pyspark VarianceThresholdSelector用法及代码示例
- Python pyspark create_map用法及代码示例
- Python pyspark date_add用法及代码示例
- Python pyspark DataFrame.to_latex用法及代码示例
- Python pyspark DataStreamReader.schema用法及代码示例
- Python pyspark MultiIndex.size用法及代码示例
- Python pyspark arrays_overlap用法及代码示例
- Python pyspark Series.asof用法及代码示例
- Python pyspark DataFrame.align用法及代码示例
- Python pyspark Index.is_monotonic_decreasing用法及代码示例
- Python pyspark IsotonicRegression用法及代码示例
- Python pyspark DataFrame.plot.bar用法及代码示例
- Python pyspark DataFrame.to_delta用法及代码示例
- Python pyspark element_at用法及代码示例
- Python pyspark explode用法及代码示例
- Python pyspark MultiIndex.hasnans用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.mllib.linalg.Vectors.parse。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。