Re: Get data from CSV files to feed SparkML library methods

2016-08-10 Thread Minudika Malshan
Thanks a lot Yanbo.! I will try it. Best Regards. On Wed, Aug 10, 2016 at 7:09 PM, Yanbo Liang wrote: > You can load dataset from CSV file and use VectorAssembler to assemble > necessary columns into a single columns of vector type. The output column > of VectorAssembler will be the features c

Re: Get data from CSV files to feed SparkML library methods

2016-08-10 Thread Yanbo Liang
You can load dataset from CSV file and use VectorAssembler to assemble necessary columns into a single columns of vector type. The output column of VectorAssembler will be the features column which should be feed into ML estimator for model training. You can refer VectorAssembler document: http://s